0.5.5 • Published 4 years ago

base-serverless-plugin v0.5.5

Weekly downloads
5
License
ISC
Repository
-
Last release
4 years ago

npm version npm downloads

Installation

Click on green button "Use this template".

Flow Capabilities

- Before commit:
- Check code and autofix common errors.  (npm run precommit)
- Check commit comment using git hooks using husky.

- Post commit:
- Changelog automation uging standard-version tool. (npm run release:minor)


- Unpublish npm module. (npm run unpublish)

Fix

git add .
npm run precommit
git commit -m 'fix: some fix file'
npm run release:patch

Minor change

git add .
npm run precommit
git commit -m 'feat: some change'
npm run release:minor

Major change

git add .
npm run precommit
git commit -m 'feat: large changes '
npm run release:major