Skip to content

Commit

Permalink
chore(detox): add release scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Feb 19, 2025
1 parent 8f2cbc2 commit b77d7bb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/drivers/detox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@
"test": "echo No tests avialable for this package",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"type-check": "tsc --noEmit"
"type-check": "tsc --noEmit",
"bump-version:patch": "npm version patch && git commit -am 'chore: bump patch version' && git push",
"release:patch": "npm run test && npm run bump-version:patch && npm run build && npm publish --access public",
"bump-version:minor": "npm version minor && git commit -am 'chore: bump minor version' && git push",
"release:minor": "npm run test && npm run bump-version:minor && npm run build && npm publish --access public",
"bump-version:major": "npm version major && git commit -am 'chore: bump major version' && git push",
"release:major": "npm run test && npm run bump-version:major && npm run build && npm publish --access public"
},
"bugs": {
"url": "https://github.com/wix-incubator/pilot/issues"
Expand Down

0 comments on commit b77d7bb

Please sign in to comment.