ngstarter-systemjs-tasks
v1.0.0-rc.1
Published
SystemJS build extension for Angular 2 Starter
Downloads
59
Maintainers
Readme
ngstarter-systemjs-tasks
SystemJS build extension for Angular 2 Starter
Getting started
Make sure you have
systemjs.conf.js
in the starter rootInstall the extension
npm install ngstarter-systemjs-tasks
Open
gulp.config.js
in the starter and add the following builder configvar systemJs = { builder: { normalize: true, minify: true, mangle: true, runtime: false, globalDefs: { DEBUG: false, ENV: 'production' } } };
Go to tasks/build.js in your starter, require the extension
require('ngstarter-systemjs-tasks');
and then set the second param to
build-systemjs
gulp.task('build', function (done) { runSequence('test', 'build-systemjs', 'build-assets', done); });
Done! Try to build it!
License
MIT