0.1.0 • Published 4 years ago

add-text-header v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

how to install

$ npm install add-text-header

how to use

$ add-text-header src dist

example

default

$ cat index.js
console.log('test');

$ add-text-header index.js dist/index.js
$ cat dist/index.js
#!/usr/bin/env node
console.log('test');

use custom string

$ cat LICENSE.text
/* this is a license */

$ add-text-header -c LICENSE.txt index.js dist/index.js
$ cat dist/index.js
/* this is a license */
console.log('test');
0.1.0

4 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago