2.0.0 • Published 8 years ago

ionic-gulp-webpack v2.0.0

Weekly downloads
13
License
MIT
Repository
github
Last release
8 years ago

Webpack Task

Use webpack to transpile and bundle your source files.

You will need to provide a webpack.config.js file in your project root. For more information on webpack configuration, see https://webpack.github.io/docs/configuration.html.

API

webpackBuild(options)

Returns a Promise that resolves when the build is finished if there are no errors, and rejects if there are build errors. Use the failOnWarning option to also reject when there are build warnings.

Available options:

  • watch (boolean) Whether to watch for changes or not. Default: false.
  • watchOptions (Object) Watch options for webpack. Default: null.
  • config (Object) Configuration for webpack. Default: uses webpack.config.js from your project root.
  • failOnWarning (boolean) Whether to reject on warning or not. Default: false.
  • statsOptions (Object) Stats options for webpack. Default:
{
  'colors': true,
  'modules': false,
  'chunks': false,
  'exclude': ['node_modules']
}

Example

var webpackBuild = require('ionic-gulp-webpack');

gulp.task('build', webpackBuild);

gulp.task('watch', function(){
  return webpackBuild({
    watch: true,
    statsOptions: {
      'colors': false,
      'errorDetails': true
    }  
  })
});