We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 246c87e commit 216e8c4Copy full SHA for 216e8c4
package.json
@@ -18,8 +18,9 @@
18
],
19
"main": "index.js",
20
"scripts": {
21
- "build": "webpack -p; babel src --out-dir dist -s; cp ./types/* README.md LICENSE package.json dist; cd dist && npm install --only=production && cd -",
22
- "pub": "npm run build && npm publish dist"
+ "clean": "rm -rf ./dist",
+ "build": "webpack -p && babel src --out-dir dist -s && cp ./types/* README.md LICENSE package.json dist && cd dist && npm install --only=production && cd -",
23
+ "pub": "npm run clean && npm run build && npm publish dist"
24
},
25
"author": "Google",
26
"repository": {
0 commit comments