https://github.com/dalenguyen/angularjs-webpack-workflow
AngularJS 1.x and Webpack 4 Integration
https://github.com/dalenguyen/angularjs-webpack-workflow
angularjs webpack webpack4 workflow
Last synced: about 1 year ago
JSON representation
AngularJS 1.x and Webpack 4 Integration
- Host: GitHub
- URL: https://github.com/dalenguyen/angularjs-webpack-workflow
- Owner: dalenguyen
- Created: 2018-08-22T13:02:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T12:47:23.000Z (over 7 years ago)
- Last Synced: 2025-03-29T16:22:59.047Z (over 1 year ago)
- Topics: angularjs, webpack, webpack4, workflow
- Language: JavaScript
- Size: 202 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# AngularJS 1x and Webpack 4 Workflow
No more gulp or bower for your AngularJS 1x project
## Features
+ ES6 through Babel loader
+ SCSS processor
+ Source map for debugging
+ Loading Base64 URL for optimizing images
+ Ng-Annotate-Loader for annotating angular application
## Getting Started
```
npm install
```
## Running the project
For development
```
npm start
```
For production
```
npm build
```
For testing
```
npm test
```
__Reference from [How to switch from Gulp to Webpack](https://www.valentinog.com/blog/from-gulp-to-webpack-4-tutorial/) and [Angular and Webpack for Modular Applications](https://egghead.io/courses/angular-and-webpack-for-modular-applications)__