$ npm install generate-breakdanceGenerate a new breakdance plugin project.
(TOC generated by verb using markdown-toc)
Install with npm:
$ npm install --save generate-breakdance
Once both generate and generate-breakdance are installed globally, run the following command to run this generator's default task:
$ gen breakdance
All tasks beside the default task are run by appending the task name to breakdance:.
Run the generator's default task to scaffold out a new breakdance plugin project.
Example
$ gen breakdance
Generate only the index.js file for a breakdance plugin. Use --stem to change the file name.
Example
$ gen breakdance:plugin-only
$ gen breakdance:plugin-only --stem foo.js
Scaffold out a complete project for a breakdance compiler plugin.
Example
$ gen breakdance:compiler
Generate only the index.js file for a compiler plugin. Use --stem to change the file name.
Example
$ gen breakdance:compiler-only
$ gen breakdance:compiler-only --stem foo.js
Scaffold out a complete project for a breakdance parser plugin.
Example
$ gen breakdance:parser
Generate only the index.js file for a breakdance parser plugin. Use --stem to change the file name.
Example
$ gen breakdance:parser-only
$ gen breakdance:parser-only --stem foo.js
To extend your own generator with the tasks and functionality of generate-breakdance, inside your generator add the following line of code:
app.use(require('generate-breakdance'));
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. MIT
This file was generated by verb-generate-readme, v0.4.2, on February 05, 2017.