[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1004 Bytes

README.md

File metadata and controls

50 lines (34 loc) · 1004 Bytes

Webpack Starter

Ready-to-use webpack starter including:

And other useful loaders and linters.

Usage

Clone the repository to your computer. You must have Node.js (> v4) and Yarn installed:

git clone git@github.com:gabrielecanepa/webpack-starter.git my-project
# or
gh repo clone gabrielecanepa/webpack-starter my-project

cd my-project

# Install packages and run the app
yarn setup

Scripts

Some scripts are already provided in your package.json.

To start a local server on port 8080:

yarn start
# or in development mode
yarn dev

To lint all your JavaScript and CSS and SCSS files:

yarn lint

To build the static files:

yarn build