Skip to content

Commit ef2d168

Browse files
committed
Fix npm prepublish warning
1 parent 26c44a1 commit ef2d168

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "tslint -p . && rm -rf lib/ && tsc",
88
"test": "mocha -r ts-node/register --recursive \"./src/**/__tests__/*\"",
99
"test-watch": "mocha -r ts-node/register --recursive \"./src/**/__tests__/*\" --watch --watch-extensions ts,tsx",
10-
"prepublish": "npm run build && npm run test"
10+
"prepare": "npm run build && npm run test"
1111
},
1212
"typings": "lib/index.d.ts",
1313
"repository": {
@@ -24,4 +24,4 @@
2424
"tslint": "5.8.0",
2525
"typescript": "2.6.2"
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)