 <!-- Replace with your own image -->
npm install jaws-release-manager
package.json, and pushing changes to your repository.
semver to increment project versions.
bash
npm install jaws-release-manager
`
$3
1. Create a script shortcut: Add the script to the package.json file
`json
"scripts": {
"release": "node ./node_modules/jaws-release-manager/main.js"
},
`
2. Execute the tool: Run the commmand
`bash
npm run release
`
3. Git Checks: The tool checks if Git is installed, if your project is a valid Node.js project, and if Git is configured correctly:
4. Select Release Type: Choose the type of release you want to create (Major, Minor, Patch, etc.):
5. Version Update Confirmation: Confirm if you want to update the version:
6. Automatic Commit and Push: The tool commits the changes and pushes them to your repository:
$3
Here's an overview of the main files in the project:
``bash