Detalhes do pacote

const-version

chrvadala269MIT2.1.0

A tiny command line tool that extract package.json version and generate export const VERSION='...' file in ES6 syntax

cli, versioning, tool, bundle

readme (leia-me)

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