We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a4d7b4 commit 30e1d50Copy full SHA for 30e1d50
package.json
@@ -17,14 +17,16 @@
17
"access": "public"
18
},
19
"scripts": {
20
- "build": "npm run clean && rollup -c",
21
"clean": "rimraf dist",
+ "build": "npm run clean && rollup -c",
22
"lint": "eslint '**/*.{js,ts,tsx}'",
23
"lint:fix": "npm run lint -- --fix",
24
"lint:types": "tsc --noEmit",
25
- "test": "jest",
+ "test": "jest --runInBand",
26
"test:watch": "jest --watch",
27
- "test:coverage": "jest --coverage"
+ "test:coverage": "jest --coverage",
28
+ "postversion": "git push && git push origin v$npm_package_version",
29
+ "prepublishOnly": "npm run lint && npm run lint:types && npm test && npm run build"
30
31
"keywords": [
32
"react",
0 commit comments