es6-workflow v0.6.4
Chialab ES6 workflow
Build bundles, test your code and generate documentation using ES6 modules.
Proposal
- Use
npmas package manager. - Write your code in the
srcfolder. - Write your tests in the
testfolder. - Build your code in the
distfolder. - Generate documentation in the
docsfolder.
Features
Use
Install this package in your project:
npm install Chialab/es6-workflow --save-devLink scripts in your package.json:
...
"scripts": {
"build": "node ./node_modules/es6-workflow/scripts/build.js",
"doc": "node ./node_modules/es6-workflow/scripts/doc.js",
"test": "node ./node_modules/es6-workflow/scripts/test.js"
},
...Run a script:
npm run build|doc|testOverride configuration
You can override or extend the default SystemJS configuration (or Karma configuration) adding a new system.conf.js (or karma.conf.js) file to your project root.
Extras
Run the following script to add ESLint support for your project:
npm run add-eslintRun the following script to add EditorConfig support for your project:
npm run add-eslintRun the following script to add TravisCI support for your project:
npm run add-travis9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago