@ngstarter/webpack-extension

1.0.0-rc.3 • Public • Published

webpack-extension

Extends https://github.com/antonybudianto/angular2-starter to have Webpack build

npm version

Getting started

  1. Copy webpack.config.js in this repo to the root of your starter.

  2. Install webpack-stream and the extension in your starter

    npm install webpack-stream @ngstarter/webpack-extension --save
  3. Go to tasks/build.js in your starter, require the extension

    // Get gulp config
    var config = require('../config')();
    
    // Load extension with config
    require('@ngstarter/webpack-extension')(config);

    and then change build-systemjs to build-webpack

    gulp.task('build', function (done) {
        runSequence('test', 'build-webpack', 'build-assets', done);
    });
  4. Done! Try to build it!

API

Use own webpack config

// Get gulp config
var config = require('../config')();

// Get webpack config
var webpackConfig = require('../webpack/webpack.config.js');

// Load extension with config and webpackConfig
require('@ngstarter/webpack-extension')(config, webpackConfig);

License

MIT

Package Sidebar

Install

npm i @ngstarter/webpack-extension

Weekly Downloads

10

Version

1.0.0-rc.3

License

MIT

Last publish

Collaborators