Skip to content

Commit

Permalink
remove --next flag from npm build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhu2000 committed Jul 21, 2019
1 parent 134c646 commit f29368a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"test": "npm run lint",
"build:demo": "npm run remove:demo; babel-node ./node_modules/.bin/webpack --config ./webpack.config.js",
"remove:demo": "rm docs/index.html; rm docs/main*; rm docs/vendors*;",
"patch": "npm version patch && npm publish --next && npm run clean",
"minor": "npm version minor && npm publish --next && npm run clean",
"major": "npm version major && npm publish --next && npm run clean",
"patch": "npm version patch && npm publish && npm run clean",
"minor": "npm version minor && npm publish && npm run clean",
"major": "npm version major && npm publish && npm run clean",
"watch": "babel-node ./node_modules/.bin/webpack --watch --config ./webpack.config.dev.js",
"clean": "rm -rf helpers/; rm -f *Loader.js; rm -f *Loader.d.ts; rm -f index.js; rm -f index.d.ts; rm -f interfaces.js; rm -f interfaces.d.ts; rm -rf docs/js",
"lint": "./node_modules/.bin/tslint --config tslint.json --format stylish --project . --fix",
Expand Down

0 comments on commit f29368a

Please sign in to comment.