From 8784f3d6adfae67b6e73b8c7ce0f501660766bcf Mon Sep 17 00:00:00 2001 From: Marc Dumais Date: Tue, 5 Mar 2024 12:07:26 -0500 Subject: [PATCH] Do not package tests Fixes #275 This commit adds a `.npmignore` file to help control what's not included in the `timeline-chart` npm package. We now skip packaging the test, which should reduce the package size considerably. Signed-off-by: Marc Dumais --- timeline-chart/.npmignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 timeline-chart/.npmignore diff --git a/timeline-chart/.npmignore b/timeline-chart/.npmignore new file mode 100644 index 0000000..e6243ad --- /dev/null +++ b/timeline-chart/.npmignore @@ -0,0 +1,4 @@ +unitTest +__tests__ +jest.config.json +tsconfig.json