mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
341 B
13 lines
341 B
var fs = require( 'fs' );
|
|
var path = require( 'path' );
|
|
|
|
module.exports = function () {
|
|
fs.readFile( path.join( __dirname, 'help.md' ), function ( err, result ) {
|
|
var help;
|
|
|
|
if ( err ) throw err;
|
|
|
|
help = result.toString().replace( '<%= version %>', require( '../package.json' ).version );
|
|
console.log( '\n' + help + '\n' );
|
|
});
|
|
};
|
|
|