diff --git a/package.json b/package.json index c624b98f5..7a5f5fddc 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "build": "webpack -p", "build:staging": "rm -rf dist/ && APP_ENV=staging npm run build && ./deploy/copy_to_dist.sh", "build:production": "npm i && rm -rf dist/ && APP_VERSION=$(npm run inc_version --silent) APP_ENV=production npm run build && ./deploy/copy_to_dist.sh", - "deploy:production": "npm run build:production && git add -A && git commit -a -m '[Build]' && git push", + "deploy:production": "npm run build:production && git add -A && git commit -a -m '[Build]' --no-verify && git push", "inc_version": "echo $((`cat .patch-version` + 1)) > .patch-version && echo \"$(node -p -e \"require('./package.json').version.match(/^\\d+\\.\\d+/)[0]\").$(cat .patch-version)\"", "perf:serve": "APP_ENV=perf parcel src/index-perf.html", "lint": "eslint . --ext .ts,.tsx",