Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Commit eed6337

Browse files
authored
Add .npmignore and prepack/prepublishOnly scripts. (#28)
1 parent 0d292fb commit eed6337

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
test/
2+
src/test/
3+
lib/test/
4+
scripts/
5+
.clang-format
6+
.travis.yml

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
"format": "find src -name '*.ts' -not -path 'src/test/fixtures/*' -not -path 'src/test/goldens/*' | xargs clang-format --style=file -i",
4040
"build": "npm run clean && tsc",
4141
"build:watch": "tsc --watch",
42+
"prepack": "npm run build",
43+
"prepublishOnly": "npm run test",
4244
"test": "npm run test:setup && npm run build && mocha",
4345
"test:watch": "watchy -w src -- npm run test",
4446
"test:setup": "scripts/setup-fixtures.sh",

0 commit comments

Comments
 (0)