A curated collection of Gulp tasks for building Ionic apps. Using these tasks allows you to stay up to date if the default Ionic 2 build changes while it is in Beta.
Tasks are configured to work by default with the Ionic starters generated by the Ionic CLI.
The current list of tasks is:
- Browserify TypeScript task
- Browserify ES2015 task
- Webpack task (ES2015 and TypeScript)
- Sass build task
- Fonts copy task
- HTML copy task
- Scripts copy task
- TSLint task
- *ESlint task
* Community maintained (not in this repo)
To use a task in your Ionic project's Gulpfile, require
it, then register it:
var gulp = require('gulp'),
buildWebpack = require('ionic-gulp-webpack-build');
gulp.task('build', buildWebpack);
Each task takes an optional options object:
gulp.task('watch', function(){
return webpackBuild({ watch: true });
});
The options depend on each task. For more information on a particular task, take a look at its README.
Each task returns either a stream or promise.