const-version

2.1.0 • Public • Published

const-version

A tiny command line tool that extract package.json version and generate export const VERSION=x.y.z file. Useful when you want to package your software version.

chrvadala Test Coverage Status npm Downloads Donate

Install

npm install const-version

Usage

{
  "name": "yourproject",
  "version": "x.y.z",
  "scripts": {
    "generate-version": "const-version ./package.json ./src/version.js"
  }
}

Example of a generated file

  // THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
  export const VERSION = 'x.y.z';

Changelog

  • v1.0 - First release
  • v2.0 - Changes some dependencies
  • v2.1 - Shrinks and upgrades deps; Implements gh-actions; Improves docs; Implements standard.js; Increases code coverage

Contributors

/const-version/

    Package Sidebar

    Install

    npm i const-version

    Weekly Downloads

    141

    Version

    2.1.0

    License

    MIT

    Unpacked Size

    8.91 kB

    Total Files

    9

    Last publish

    Collaborators

    • chr.vadala