ionic-gulp-webpack

2.0.0 • Public • Published

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

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i ionic-gulp-webpack

    Weekly Downloads

    1

    Version

    2.0.0

    License

    MIT

    Last publish

    Collaborators

    • jthoms1
    • adamdbradley
    • brandyscarney
    • tlancina