Skip to content

Commit

Permalink
Add publish script for inbound branch (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
esme authored Nov 30, 2023
1 parent 1ee6bcb commit f13841b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
"eslint:fix": "eslint src .js --fix",
"preversion": "npm run build:test",
"postversion": "git push --follow-tags",
"publish:alpha": "npm version prerelease --preid alpha && npm publish --access public --tag next",
"publish:inbound": "npm version prerelease --preid alpha && npm publish --access public --tag next",
"publish:alpha": "npm version prerelease --preid alpha && npm publish --access public --tag alpha",
"publish:beta": "npm version prerelease --preid beta && npm publish --access public --tag beta",
"publish:rc": "npm version prerelease --preid rc && npm publish --access public --tag rc",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:major": "npm version major && npm publish --access public",
"publish:preminor": "npm version preminor && npm run publish:alpha",
"publish:premajor": "npm version premajor && npm run publish:alpha",
"publish:preminor": "npm version preminor && npm run publish:rc",
"publish:premajor": "npm version premajor && npm run publish:rc",
"test:build": "npx webpack --config webpack-test.config.js --mode development",
"test:watch": "npx webpack --config webpack-test.config.js --mode development --watch",
"test:serve": "cross-env NODE_ENV=test npm run test:watch & jasmine-browser-runner serve --config=test/support/jasmine-browser.json",
Expand Down

0 comments on commit f13841b

Please sign in to comment.