sindresorhus / node-module-boilerplate

Boilerplate to kickstart creating a Node.js module
MIT License
737 stars 75 forks source link

implement CLI boilerplate #3

Closed arthurvr closed 9 years ago

arthurvr commented 9 years ago

Fix https://github.com/sindresorhus/node-module-boilerplate/issues/1. Same as the yeoman generator, in the cli-boilerplate folder.

sindresorhus commented 9 years ago

:+1:

sindresorhus commented 9 years ago

@kevva Any ideas how we can make $ curl -fsSL https://github.com/sindresorhus/node-module-boilerplate/archive/master.tar.gz | tar -xz --strip-components 2 target only one of the folders?

kevva commented 9 years ago

Yeah, this should do it:

$ curl -fsSL https://github.com/sindresorhus/node-module-boilerplate/archive/master.tar.gz | tar -xz node-module-boilerplate-master/cli-boilerplate --strip-components 2
sindresorhus commented 9 years ago

@kevva Awesome!