Skip to content

Commit

Permalink
Adds push tags script
Browse files Browse the repository at this point in the history
  • Loading branch information
Enngage committed Nov 1, 2023
1 parent 36f9118 commit dda87e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"lint:check": "npx eslint lib",
"push:tags": "git push --tags",
"test:browser": "karma start karma.conf.js",
"test:gh-actions": "karma start karma-gh-actions.conf.js",
"test:node": "npm run build:commonjs && npx mocha -- \"test/node/**/*.js\" --timeout 15000",
"test:all": "npm run test:node && npm run test:gh-actions",
"new-patch": "npm version patch && npm run set-sdk-version && npm run check-version ",
"new-minor": "npm version minor && npm run set-sdk-version && npm run check-version ",
"new-major": "npm version major && npm run set-sdk-version && npm run check-version ",
"prepublishOnly": "npm run lint:check && npm run check-version && npm run build:all && npm run test:all",
"prepublishOnly": "npm run lint:check && npm run check-version && npm run build:all && npm run test:all && npm run push:tags",
"set-sdk-version": "npx ts-node ./misc/set-sdk-version.ts",
"check-version": "npx ts-node ./misc/verify-sdk-version.ts",
"webpack:dev": "webpack -- --mode development --config webpack.config.js --progress",
Expand Down

0 comments on commit dda87e5

Please sign in to comment.