Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dewbjorn/webpack-starter
A Webpack Starter Kit, including Babel and a bunch of CSS & SASS loaders.
https://github.com/dewbjorn/webpack-starter
babel es6 starter webpack
Last synced: about 1 month ago
JSON representation
A Webpack Starter Kit, including Babel and a bunch of CSS & SASS loaders.
- Host: GitHub
- URL: https://github.com/dewbjorn/webpack-starter
- Owner: dewbjorn
- License: mit
- Created: 2018-01-04T16:10:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T10:18:49.000Z (about 7 years ago)
- Last Synced: 2024-12-11T01:06:10.857Z (about 1 month ago)
- Topics: babel, es6, starter, webpack
- Language: JavaScript
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Webpack Starter
A Webpack Starter Kit, bundled with -
- Babel (es2015 preset)
- JavaScript & CSS minification
- CSS Reset
- CSS Hot Loader
- CSS Loader
- Sass Loader## Installing
1. ```git clone https://github.com/Ardethian/webpack-starter && cd webpack-starter```
2. Simply use ```yarn``` or ```npm install```## Scripts
* Start DevServer - ```yarn run dev``` or ```npm run dev```
- Enables JavaScript and CSS Source Maps
- Disables JS & CSS minification
- Enables hot reloading* Build for production - ```yarn run build``` or ```npm run build```
- Disables Source Maps
- Enables JS & CSS minification## Multiple Output and Entry Points
To add more files to your bundle or create extra bundles (for example, vendor bundles), see the Webpack documentation about [Entry Points](https://webpack.js.org/concepts/entry-points/) and [Output](https://webpack.js.org/concepts/output/).Cheers \m/