1. cz-ccgls
Commitizen adapter following the Conventional-Changelog with support for Gitmoji and Lerna Scopes.
cz-ccgls
Package: cz-ccgls
Created by: thierrymichel
Last modified: Mon, 04 Dec 2023 08:43:25 GMT
Version: 0.7.1
License: SEE LICENSE IN UNLICENSE
Downloads: 513
Repository: https://github.com/thierrymichel/cz-ccgls

Install

npm install cz-ccgls
yarn add cz-ccgls

cz-ccgls

Adapter for commitizen, a prompt for conventional changelog standard.

Support gitmoji and Lerna scopes.

npm version
Commitizen friendly
Conventional Commits
License

Inspired by cz-conventional-changelog and cz-emoji

Screenshots

Usage

Making your repo Commitizen-friendly

First, install the Commitizen cli tools:

 npm install commitizen -g

Next, initialize your project to use the cz-ccgls adapter by typing:

 commitizen init cz-ccgls --yarn --dev --exact

Or if you are using Npm: commitizen init cz-ccgls --save-dev --save-exact

Locally

 # Install commitizen + adapter
yarn add -D commitizen cz-ccgls

Add some config information to your package.json

 "config": {
  "commitizen": {
    "path": "./node_modules/cz-ccgls"
  }
}

More infos in the commitizen documentation

Configuration

Add some config information to your package.json (default values)

 "config": {
  "cz-ccgls": {
    "useScopes": true
  }
},

Related

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin