1.0.0 • Published 5 years ago

@novagraphix/create-vue-website v1.0.0

Weekly downloads
3
License
MIT
Repository
-
Last release
5 years ago

Conventional Commits

Create a Moviesite

SAO STANDARD VERSION

npx @novagraphix/create-vue-website <project-name>

or

yarn create @novagraphix/vue-website <project-name>

npm

npm login && npm push

standard-version

! Writes also all changes written in commit message to CHANGELOG.md

First Release

# npm run script
npm run release -- --first-release

This will tag a release without bumping the version in package.json (et al.)

Pre-release

# npm run script
npm run release -- --prerelease alpha

This will tag the version 1.0.1-alpha.0

Minor

# npm run script
npm run release -- --release-as minor

This will tag the version 1.1.0

Commit Message Convention, at a Glance

patches: 1.0.x

git commit -a -m "fix(parsing): fixed a bug in our parser"

features: 1.x.0

git commit -a -m "feat(parser): we now have a parser \o/"

breaking changes: x.0.0

git commit -a -m "feat(new-parser): introduces a new parsing library
BREAKING CHANGE: new library does not support foo-construct"

other changes:

You decide, e.g., docs, chore, etc.

git commit -a -m "docs: fixed up the docs a bit"