8.0.1 • Published 3 months ago

@thisismanta/semantic-version v8.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

npx lint-commit-message <path>

The <path> must point to a text file containing commit message that complies with the following pattern:

<type>[!]: <subject>

Where

  • <type> can be either feat, fix, test, refactor or chore.
  • ! indicates that the commit contains breaking changes.
  • <subject> is the actual commit message where the first word must be written in lower cases.

Usage example with lefthook

# lefthook.yml
commit-msg:
  commands:
    lint:
      run: npx lint-commit-message {1}

npx auto-npm-version

This command is supposed to be run on CI, such as GitHub Actions. It will run npm version <new-version>, which <new-version> is automatically derived from your commit messages according to the table below and then it creates a new entry on GitHub releases.

Commit message typePost-commit command
!npm version major
featnpm version minor
fixnpm version patch
OthersDoes not run npm version

Usage example with GitHub Actions

on:
  push:
    branches: [master]
jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0 # Ensure Git tags are fetched
      - uses: actions/setup-node@v4
        with:
          node-version-file: 'package.json'
          cache: npm
      - run: npm ci # Install semantic-version as part of the dependencies
      - run: npx auto-npm-version
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Make it possible to create a new release using GitHub API
8.0.1

3 months ago

8.0.0

3 months ago

7.0.0

4 months ago

6.0.0

4 months ago

5.0.2

1 year ago

5.0.1

1 year ago

5.0.0

1 year ago

2.0.1

1 year ago

3.0.0

1 year ago

4.0.0

1 year ago

2.0.0

1 year ago

2.0.0-9

1 year ago

2.0.0-8

1 year ago

3.0.0-0

1 year ago

2.0.0-7

1 year ago

2.0.0-6

1 year ago

2.0.0-5

1 year ago

2.0.0-4

1 year ago

2.0.0-3

1 year ago

2.0.0-2

1 year ago

2.0.0-1

1 year ago

2.0.0-0

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago