npm install -g semantic-release-cli
cd your-module
semantic-release-cli setupUsage:
semantic-release-cli setup [options]
Options:
-h --help Show this screen.
-v --version Show version.
--[no-]keychain Use keychain to get passwords [default: true].
--ask-for-passwords Ask for the passwords even if passwords are stored [default: false].
--tag=<String> npm tag to install [default: 'latest'].
Aliases:
init setup
semantic-release-cli performs the following steps:
- Asks for the information it needs. You will need to provide it with:
- Whether your GitHub repository is public or private
- Which NPM registry you want to use (Default: https://registry.npmjs.org/)
- Your NPM username (unless passwords were previously saved to keychain)
- Your NPM email
- Your NPM password
- Your GitHub username
- Your GitHub password (unless passwords were previously saved to keychain)
- Which continuous integration system you want to use. (Options: Travis CI / Pro / Enterprise, or Other)
- Whether you want to test a single node.js version (e.g. - 0.12) or multiple node.js versions (e.g. - 0.10, 0.12, etc.)
- Save your passwords to your local OS's keychain using keytar for future use (unless
--no-keychainwas specified) - NPM Add User
- Runs
npm adduserwith the npm information provided to generate a.npmrc - Parses the NPM token from the
.npmrcfor future use
- Runs
- Create GitHub Personal Token
- Logs into GitHub using the username and password provided
- Creates a GitHub Personal Access Token and saves it for future use
- Overwrite your .travis.yml file (if Travis CI was selected)
before_install: npm i -g npm@^2.0.0: install NPM 2before_script: curl -Lo travis_after_all.py https://git.io/vLSON: install travis-after-all script to enable runningsemantic-releaseafter ALL build succeedafter_success: python travis_after_all.pyandnpm run semantic-release: runsemantic-releaseexactly once after all builds pass- Set other sane defaults:
sudo: false,cache: directories: node_modules,notifications: email: false,before_script: npm prune
- Update your package.json
- Remove
versionfield (you don't need it anymore --semantic-releasewill set the version for you automatically) - Add a
semantic-releasescript:"semantic-release": "semantic-release pre && npm publish && semantic-release post" - Add
semantic-releaseas adevDependency - Add or overwrite the
repositoryfield
- Remove
- Login to Travis CI to configure the package
- Enable builds of your repo
- Add GH_TOKEN and NPM_TOKEN environment variables in the settings
By default, semantic-release-cli supports the popular Travis CI server. If you select Other as your server during configuration, semantic-release-cli will print out the environment variables you need to set on your CI server. You will be responsible for adding these environment variables as well as configuring your CI server to run npm run semantic-release after all the builds pass.
Note that your CI server will also need to set the environment variable CI=true so that semantic-release will not perform a dry run. (Most CI services do this by default.) See the semantic-release documentation for more details.
MIT License 2015 © Christoph Witzko and contributors



