├── README.md └── template ├── .gitignore ├── bower.json ├── gulpfile.coffee ├── karma.conf.coffee ├── package.json ├── src ├── app.coffee ├── app.spec.coffee └── index.html └── webpack.config.coffee /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/README.md -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ 3 | target/ 4 | -------------------------------------------------------------------------------- /template/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/bower.json -------------------------------------------------------------------------------- /template/gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/gulpfile.coffee -------------------------------------------------------------------------------- /template/karma.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/karma.conf.coffee -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/src/app.coffee -------------------------------------------------------------------------------- /template/src/app.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/src/app.spec.coffee -------------------------------------------------------------------------------- /template/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/src/index.html -------------------------------------------------------------------------------- /template/webpack.config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffling/angular-webpack-example/HEAD/template/webpack.config.coffee --------------------------------------------------------------------------------