1.0.13 • Published 2 years ago

@shad02w/cmz v1.0.13

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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

1.0.13

2 years ago

1.0.12-beta.1

3 years ago

1.0.12-beta.0

3 years ago

1.0.12

3 years ago

1.0.9

3 years ago

1.0.9-beta.1

3 years ago

1.0.9-beta.0

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.8

3 years ago

1.0.8-beta.1

3 years ago

1.0.8-beta.0

3 years ago

1.0.8-beta.2

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.6-beta.1

3 years ago

1.0.6-beta.0

3 years ago

1.0.6-beta.2

3 years ago

1.0.2

3 years ago

1.0.2-beta.3

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2-beta.2

3 years ago

1.0.2-beta.0

3 years ago

1.0.2-beta.1

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago