Skip to content

ngstarter/webpack-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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