GithubHelp home page GithubHelp logo

acusti / semver-tags Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jtrussell/semver-tags

0.0 3.0 0.0 125 KB

Get semver tags for a repo (git or svn)

License: MIT License

JavaScript 100.00%

semver-tags's Introduction

semver-tags Build Status Dependency Status

List the semver tags for your repo.

Getting Started

Install the module with: npm install -g semver-tags

cd into your repo and run semver-tags --help to see available options.

CLI

Get the latest semver tag:

semver-tags --last

Get the last three:

semver-tags --last 3

Get the first:

semver-tags --first

Set a lower bound:

semver-tags --greater-than 1.2.3

Set an upper bound:

semver-tags --less-than 1.2.3

Filter with a version mask:

semver-tags --satisfies ~1.2

Nested repos of different flavors fouling things up?

semver-tags --repo-type svn --first

API

var semver_tags = require('semver-tags');

semver_tags({
  repoType: 'git', // 'git' or 'svn', Will attemp to to auto detect if omitted
  first: 3, // Get only the fist 3 semver tags
  last: 1, // Get only the last 1 semver tag
  greaterThan: '1.2.3', // Lower bound
  lessThan: '1.2.3', // Upper bound
  satisfies: '~1.2' // Version mask
}, function(err, tags) {
  if(err) { /* ... */ }
  // Do something with tags array...
});

Note: All options are... well... optional. As is the entire options object. If you only care about getting all the semver tags for your repo just pass a callback.

Note: semver-tags will attempt to auto detect your repo type (git or svn) by inspecting its surroundings. Currently this uses findup-sync. While this is usually fine for simple command line usage if you're concerned about blocking calls to the filesystem I'd suggest making use of the repoType option to bypass the auto detect.

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

License

Copyright (c) 2013 Justin Russell
Licensed under the MIT license.

semver-tags's People

Contributors

jtrussell avatar jrussell-ivantage avatar acusti avatar

Watchers

 avatar James Cloos 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.