NOTE: This workflow is now using Webpack 2 beta. There is a branch with the old workflow if you want to use it.
NOTE 2: THIS IS STILL WIP, I WILL REMOVE THIS CAPS WHEN I AM SURE IT WORKS PERFECTLY.
This workflow serves as a starting point for building Angular 1.x applications using WebPack 2. Should be noted that apart from the pre-installed angular package, this workflow is pretty much generic.
- Heavily commented webpack configuration with reasonable defaults.
- ES6, and ES7 support with babel.
- Source maps included in all builds.
- Development server with live reload.
- Production builds with cache busting and asset minification.
- Testing environment using karma to run tests and jasmine as the framework.
- Code coverage when tests are run.
- No gulp and no grunt, just npm scripts.
To use it, just clone this repo and install the npm dependencies:
$ git clone https://github.com/Foxandxss/angular-webpack-workflow my_app
$ cd my_app
$ npm install
All scripts are run with npm run [script]
, for example: npm run test
.
build
- generate a minified build to dist folderstart
- start development server, try it by openinghttp://localhost:8080/
test
- run all teststest-watch
- continuously run unit tests watching for changes
See what each script does by looking at the scripts
section in package.json.
To see how to structure an Angular 1.x application using this workflow, please check this demo.
Also, there is an article in angular-tips. The article is based on the Webpack 1 version, but almost everything is applicable here.
The license of this workflow is MIT.