Coder Social home page Coder Social logo

unique-version's Introduction

@zaerl/unique-version

Generate a unique version given your package.json version.

Install

npm install @zaerl/unique-version

Usage

import { generate, UniqueVersion, UniqueVersionOptions } from '@zaerl/unique-version';

// If your package.json version is "1.0.0"
const version = generate({
  input: 'package.json', // Read the package.json file
  type: 'file', //Read from a file
  hashSize: 7, // Length of the hash
  git: true // Use git for generating the hash
});

console.log(version);

/*
{
  full: "1.0.0-HASH",
  major: "1",
  minor: "0",
  patch: "0",
  hash: "HASH"
}
*/

The HASH is calculated using git rev-parse HEAD otherwise is a random value.

Defaults:

export interface UniqueVersionOptions {
  input: 'package.json'; // The name of the file to read or a simple string with the version
  type?: 'file' | 'string'; // 'file' to read from a 'file, 'string' from a string
  hashSize?: number; // default 7
  git?: boolean; // default true
}

If an error is generated all values from UniqueVersion will be null.

License

MIT

unique-version's People

Contributors

zaerl avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.