https://github.com/ndelangen/understanding-webpack
A repo with some webpack ideas and demonstrations
https://github.com/ndelangen/understanding-webpack
webpack webpack-loader webpack-plugin webpack2
Last synced: about 2 months ago
JSON representation
A repo with some webpack ideas and demonstrations
- Host: GitHub
- URL: https://github.com/ndelangen/understanding-webpack
- Owner: ndelangen
- Created: 2017-03-15T21:43:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T21:19:54.000Z (over 9 years ago)
- Last Synced: 2025-06-18T07:48:52.809Z (about 1 year ago)
- Topics: webpack, webpack-loader, webpack-plugin, webpack2
- Language: JavaScript
- Homepage: https://docs.google.com/presentation/d/1ZKg5QOuuUazzAY4-o3HXAjvk_HNg0CPgxjhLI7lfZro
- Size: 56.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DEMO understanding webpack
[](https://greenkeeper.io/)
A small project used to demonstrate webpack 2.
## Setup environment
Install these dependencies globally:
- NodeJS (^7.5.0)
- Npm (^4.2.1)
- Yarn (^0.20.3)
## Before first run
1. Clone repository
2. Run `yarn install`
## Run application
Starting the application, run `npm start -- -h` for a list of options.
- Development
`npm start -- dev`
- Production
`npm start -- prod`
## Run tests
Starting tests, run `npm test -- -h` for a list of options.
- Single (all)
`npm test -- *`
- Watch (unit tests)
`npm test -- unit --watch`
- Watch (unit tests)
`npm test -- lint`
You can run multiple types like this: (the order is the order of execution)
`npm test -- unit lint`
## About this project
A more detailed information here...