generator-es2015 v0.0.1
generator-es2015
Generate ES2015 projects that transpile your code using BabelJS and can directly be tested with Mocha and Istanbul.
get started
This generator assumes you have nodejs and npm installed (get it at
nodejs.org), as well as
yeoman (get it with [sudo] npm i -g yo).
Install the es2015 generator globally to quickly start new projects wherever you want:
[sudo] npm i -g generator-es2015Then start the new project with
yo es2015the project
yo es2015 creates a project where your es2015 sources are located in
src/main and the es2015 tests are located in src/test.
npm startcompiles everything from src/main to lib/ and everything from
src/test to test/.
npm testdoes the same but also runs the tests from test/ against the generated
code in app/ (so don't worry if you don't get 100% test coverage, babeljs
adds code to make your es2015 stuff happen in es5).
license
This project is MIT-licensed.
10 years ago