Socket
Socket
Sign inDemoInstall

@fingerprintjs/conventional-changelog-dx-team

Package Overview
Dependencies
5
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @fingerprintjs/conventional-changelog-dx-team

Custom conventional changelog preset for semantic-release


Version published
Weekly downloads
529
increased by17.29%
Maintainers
2
Install size
39.2 kB
Created
Weekly downloads
 

Readme

Source

Conventional changelog dx-team preset

This package provides a custom preset for Conventional Changelog, specifically designed for the DX team at FingerprintJS. It is configured for use with semantic-release and includes customizable release rules and categories for changes.

Installation

To install this package, use the following command:

pnpm install @fingerprintjs/conventional-changelog-dx-team

Configuration

To use this preset in your project, add the following configuration to your project's semantic-release file:

module.exports = {
  plugins: [
    [
      '@semantic-release/commit-analyzer',
      {
        'config': '@fingerprintjs/conventional-changelog-dx-team',
        'releaseRules': '@fingerprintjs/conventional-changelog-dx-team/release-rules'
      }
    ],
    [
      '@semantic-release/release-notes-generator',
      {
        'config': '@fingerprintjs/conventional-changelog-dx-team',
      }
    ],
  ]
};

Commit Examples

Will trigger a release

Bugfix (patch)

fix: Fixed logic bug

New feature (minor)

feat: Added new feature

Breaking change (major)
feat: upgrade runtime to Node 20 

BREAKING CHANGE: use node 20

Will not trigger a release

  • docs: Updated documentation
  • perf: Performance improvements
  • build: add test pipeline
  • test: improve test coverage
  • chore: updated dependencies
  • refactor: refactored code for readability

License

This project is licensed under the MIT license. See the LICENSE file for more info.

FAQs

Last updated on 18 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc