This package has been deprecated

Author message:

ionic-gulp-webpack-build has been renamed to ionic-gulp-webpack.

ionic-gulp-webpack-build

1.0.0 • Public • Published

Webpack Build 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.

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.
  • statsOptions (Object) Stats options for webpack. Default:
{
  'colors': true,
  'modules': false,
  'chunks': false,
  'exclude': ['node_modules']
}

Example

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

gulp.task('build', webpackBuild);

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

Readme

Keywords

none

Package Sidebar

Install

npm i ionic-gulp-webpack-build

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jthoms1
  • adamdbradley
  • brandyscarney
  • tlancina