iignatov / ionic-gulp-tasks

Collection of gulp tasks for building Ionic apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ionic Gulp tasks

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

Tasks are configured to work by default with the Ionic starters generated by the Ionic CLI.

The current list of tasks is:

Usage

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);

API

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.

Return value

Each task returns either a stream or promise.

About

Collection of gulp tasks for building Ionic apps


Languages

Language:JavaScript 100.0%