|
@@ -20,6 +20,10 @@
|
|
"build:bundle:fullpath": "env OUT=uppy-fp.js ./bin/build-bundle --full-paths",
|
|
"build:bundle:fullpath": "env OUT=uppy-fp.js ./bin/build-bundle --full-paths",
|
|
"build:bundle:min": "./bin/build-bundle",
|
|
"build:bundle:min": "./bin/build-bundle",
|
|
"build:bundle": "./bin/build-bundle && ./bin/build-bundle-locale",
|
|
"build:bundle": "./bin/build-bundle && ./bin/build-bundle-locale",
|
|
|
|
+ "release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish",
|
|
|
|
+ "release:major": "env SEMANTIC=major npm run release",
|
|
|
|
+ "release:minor": "env SEMANTIC=minor npm run release",
|
|
|
|
+ "release:patch": "env SEMANTIC=patch npm run release",
|
|
"watch": "parallelshell 'npm run watch:js' 'npm run watch:css' && node website/update.js",
|
|
"watch": "parallelshell 'npm run watch:js' 'npm run watch:css' && node website/update.js",
|
|
"watch:fast": "parallelshell 'npm run watch:css' 'npm run web:preview'",
|
|
"watch:fast": "parallelshell 'npm run watch:css' 'npm run web:preview'",
|
|
"watch:js": "nodemon --watch src --ext js -x 'npm run build:bundle && node website/update.js'",
|
|
"watch:js": "nodemon --watch src --ext js -x 'npm run build:bundle && node website/update.js'",
|