9.1.1 • Published 4 months ago

@thisismanta/semantic-version v9.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
4 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
9.1.1

4 months ago

9.1.0

11 months ago

9.0.0

11 months ago

8.0.1

1 year ago

8.0.0

1 year ago

7.0.0

1 year ago

6.0.0

2 years ago

5.0.2

2 years ago

5.0.1

2 years ago

5.0.0

2 years ago

2.0.1

2 years ago

3.0.0

2 years ago

4.0.0

2 years ago

2.0.0

2 years ago

2.0.0-9

2 years ago

2.0.0-8

2 years ago

3.0.0-0

2 years ago

2.0.0-7

2 years ago

2.0.0-6

2 years ago

2.0.0-5

2 years ago

2.0.0-4

2 years ago

2.0.0-3

2 years ago

2.0.0-2

2 years ago

2.0.0-1

2 years ago

2.0.0-0

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago