@verdebydesign/makever

1.0.2 • Public • Published

Makever - makever(1)

Creates a file with more descriptive information based on the version of your package

Add a codename to a release of your project based on the current version without hassle. makever stamps an auto generated or custom codename to your project for a memorable release. Uses "npm version [options]" to perform any update you need to your version directly with makever, tying in a codename in the process.

Install

npm i -D @verdebydesign/makever

Synopsis

makever [-h] [--dump] [-c=codename] [-o=file] [-v=npm-version-options] [-m=tag-message] [--std] [--tag] [--dry-run] [--quiet] [--force] [--yes] [--no]

Quick use

makever # auto generates a codename
Options
Config
-c, --codename Set the codename. The Codename must contain only letters, underscode and numbers
-o, --output The name of the version file. Supports for '.json' file only
--tag, -r Enable git annotated tagging
-v, --version same options as npm version
-m Tag message. Combine with --tag and -v
Output
--std Output content on the standard output
-d, --dump Dump the version file contents to stdout
-t, --dry-run Test mode. Mock the command behaviour and output to stdout
Misc
-h, --help Show help
-q, --quiet Shh mode
-f, --force Force an action that would not otherwise run without this flag
-y, --yes Directly accept an operation another option may be introducing
-n, --no Directly deny an operation another option may be introducing

More detail

  • makever -c=<codename>

makever will generate a version file with a default name of "version.json". The file will contain data about your package's version and it's codename along side some other metadata.

  • makever -c=<codename> -o=<file>

The version file will be created using the filename passed to the -o cmd arg. The version file is a json file, the extension can omitted.

  • makever -c=<codename> --std

dump generated data to stdout instead of writing to a file. --std and -o options will not work combined.

  • makever --dump

Dumps the contents of an existing version file to stdout.

  • makever -c=<codename> -v [ <newversion> | major | minor | patch | ...]

makever uses the power of npm version under the hood to actually manage your package's version and generate its version file. So, all the possible options given to npm version can be passed to makever using the -v or --version args. npm version reads a "prerelease" option, which makever can use to pass a generated codename to, using the '%codename' placeholder. For example: running makever -v "prerelease --preid=%codename" for a codename such as "A-stark", the generated pre-release version would be "v1.0.1-A-stark.0".

  • makever -c=<codename> -v patch -m "Update to version %v Codename %c"

Pass a message to stamp your new release using the -m option. Combined with --tag and -v. For npm version, a default message of 'Update to %version, codename %codename' would be generated if no message is passed by the user. See npm version. For makever --tag a default message of 'Codename %c' is used if no message passed.

  • makever -c=<codename> --tag

Verifies if the current project is a git repository with a clean tree, tags and pushes an annotated tag.

  • makever -c=<codename> --tag [-y | -n]

Before tagging the repo, the user is prompted to accept or deny the tag and push it. The prompt may be skipped by accepting or denying the operation with the -y or -n options respectively.

  • makever -c=<codename> --dry-run ...

Take makever for a test drive. Run with no side effects before committing to generating an actual version file. Dry run is an evolving feature, may not cover all cases the command itself covers.

  • makever -c=<codename> -o=<file> --quiet

Run in Shh mode, and perform a silent run.

  • makever -c=<codename>

This operations will fail if a version file already exists. option -f may be used to run the command dangerously, by overwriting the current version file. -f may be used for other operations but it will silently be ignored everytime is does not apply.

Placeholders

makever uses placeholders for generated values to create proper messages

  • %s, %v, %version for the generated version

  • %c, %codename for the generated codename

Run

After installing makever you could access the command by

  • node_modules/bin/makever [options] :(

I recommend using npx instead. npx will use a local installation of a package or download it, in order to run it.

  • npx makever [options] :)

Tests

  • npm run test run entire test suite with coverage report
  • npm run test:w watch test files
  • npm run test:f watch specific test file by RegExp, example: npm run test:f -- Print will run and watch the file Print.test.js

Manual

  • Run man makever to read the command's manual
  • makever --help for quick help
  • makever [option] [--help | help | -h] to show help for a specific option

Development setup

  • Clone the repository from github
  • Checkout develop branch git checkout develop
  • Instal npm i
  • Test npm run test
  • Link command for local usage npm link
  • Verify command was linked successfully makever -h or man makever

Build Status

Dev Build Status

Voilà

CLI example

CONTRIBUTE

  • Follow CONTRIBUTING.md

  • Rules of Conduct Contributor Covenant

License

ISC License ISC

Author

© 2018-2019 Verdexdesign

Package Sidebar

Install

npm i @verdebydesign/makever

Weekly Downloads

1

Version

1.0.2

License

ISC

Unpacked Size

218 kB

Total Files

23

Last publish

Collaborators

  • akaizn