@shad02w/cmz
TypeScript icon, indicating that this package has built-in type declarations

1.0.13Β β€’Β PublicΒ β€’Β Published

CMZ

A helpful commit cli πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚

Installation

Global

yarn add global @shad02w/cmz
# or
npm i -g @shad02w/cmz
# then commit using
cmz

Local

yarn add -D @shad02w/cmz
# then commit using
yarn cmz

Configurations

Add cmz.config.js to the root of workspace and repo, add setup as following:

const { defineConfig } = require('@shad02w/cmz')

module.exports = defineConfig({
    commitTypes: [
        {
            name: 'Refactor',
            description: 'A code change that neither fixes a bug nor adds a feature',
        },
        {
            name: 'Fix',
            description: 'A bug fix',
        },
        {
            name: 'Upgrade',
            description: 'Dependencies update and change',
        },
        {
            name: 'Publish',
            description: 'Release a new version to npm',
        },
    ],
    scopes: [
        {
            name: 'app',
            description: 'App for native platform',
        },
        {
            name: 'web',
            description: 'Web application',
        },
        {
            name: 'shared',
            description: 'Shared code between web and app',
        },
    ],
    // Final commit message reolve to
    resolve: ({ commitType, message }) => `(${commitType.name}) ${message}`,
})

You can also define configuration file in Typescirpt , to do that , create a cmz.config.ts file and set it up similar to above

import { defineConfig } from '@shad02w/cmz'

export default defineConfig({
    // Your config here
})

and also install ts-node, without ts-node the config file will not able to transpile.

If you do not want to put config file on root of the workspace or want a alternative config file name, you can use

cmz -c "your config file path here"

to specify a config file.

Options

# cmz -h
A simple git commit tool

USAGE
  $ cmz

OPTIONS
  -c, --config=config  custom config file path
  -h, --help           show CLI help
  -v, --version        show CLI version

Contributors

Readme

Keywords

Package Sidebar

Install

npm i @shad02w/cmz

Weekly Downloads

1

Version

1.0.13

License

MIT

Unpacked Size

58.8 kB

Total Files

66

Last publish

Collaborators

  • alvistse123