LibStart
Yeoman generator to start your UMD library.
Getting Started
If you'd like to get to know Yeoman better check out the complete Getting Started Guide.
Overview
This generator will create a basic scaffolding of a generic UMD library.
It will come with :
The generator will even reserve its name on npm's registery if you whish to, thanks to npmreserve.
Npm Scripts
npm postest
(auto)
Is run automatically after npm test
and controls formatting and linting.
npm preversion
(auto)
Is run automatically before npm bump
and runs npm build
.
npm postversion
(auto)
Is run automatically after npm bump
and will synchronize bower.json
with package.js
's new version.
npm build
(manual)
It runs test
, changelog
, umd
and uglify
.
npm test
(manual)
Tests.
Custom Scripts
They are all run by the previous npm scripts but you can run them at your convenience.
npm run-script format
Test the formatting with JSCS
npm run-script lint
Lint with ESLint
npm run-script umd
UMDify your library
npm run-script changelog
Generate a changelog for your library based on your commits if you've followed one of the supported convention.
npm run-script uglify
Uglify your library
Structure
library
├ .eslintrc
├ .editorconfig
├ .jscsrc
├ README.md
├ LICENSE
├ package.json
├ bower.json
│
└─── bin
| ├ changelog.js
| └ postversion.js
|
└─── src
| └ lib.js
|
└─── test
└ lib.spec.js
Install
To install generator-libstart from npm, run:
npm install -g yo generator-libstart
Finally, initiate the generator:
yo libstart
License
MIT