Skip to content

form8ion plugin for managing tools related to commit conventions

License

Notifications You must be signed in to change notification settings

form8ion/commit-convention

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

commit-convention

form8ion plugin for managing tools related to commit conventions

Node CI Workflow Status Codecov SLSA Level 2

Table of Contents

Usage

MIT license npm Try @form8ion/commit-convention on RunKit node

Installation

$ npm install @form8ion/commit-convention --save-prod

Example

Import

import {packageManagers} from '@form8ion/javascript-core';
import {scaffold, test, lift} from '@form8ion/commit-convention';

Execute

(async () => {
  const projectRoot = process.cwd();

  await scaffold({projectRoot, configs: {}});

  if (await test({projectRoot})) {
    await lift({projectRoot, packageManager: packageManagers.NPM});
  }
})();

Contributing

PRs Welcome Commitizen friendly Conventional Commits semantic-release: angular Renovate

Dependencies

$ nvm install
$ npm install

Verification

$ npm test