Fork me on GitHub

Node Release Tools

Node Release Tools is a simple NPM package which makes it really easy automate releases of your Node.js libraries

Installation

Just install it via NPM:

$ npm install releasetools

Usage

The easiest way to use it is by requiring it in your build script. You can see an example of usage in this package Jakefile file.

Additionally, it's possible to customize its behaviour by changing some parameters:

var releaseTools = require('releasetools');

releaseTools.setOptions({
  changelogFile: 'History.md',
  authorsFile: 'AUTHORS',
  siteIndexPath: 'site/index.html',
  siteAssetsPaths: [
    'site/javascripts',
    'site/stylesheets'
  ],
  examplePaths: [
    'examples/*'
  ]
});

Tests

You just have to checkout this package from GitHub, install development dependencies and execute the tests:

$ git clone "https://github.com/rafeca/node-releasetools.git"
$ npm install --dev
$ npm test

Change Log

0.4.1 — March 12, 2013

0.4.0 — September 17, 2012

0.3.0 — June 29, 2012

0.2.0 — June 24, 2012

0.1.4 — January 22, 2012

0.1.3 — January 22, 2012

0.1.2 — January 22, 2012

0.1.1 — December 6, 2011

0.1.0 — December 6, 2011

0.0.2 — December 4, 2011

0.0.1 — December 4, 2011

Contributors

License

(The MIT License)

Copyright (c) 2011 Rafael de Oleza <rafeca@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.