Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Updated Starter Pack #9

Merged
merged 2 commits into from
Sep 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/dist
/node_modules
yarn-error.log
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,24 @@ npm install
yarn
```

After that, start up Webpack:
After that, start up Webpack Development Server:

```
webpack --watch
npm run dev
```

Webpack will watch `/src/styles.css` and `/tailwind.js` and rebuild your stylesheet on every change.
Webpack Development Server will watch `/src/styles.css` and `/tailwind.js` and rebuild your stylesheet on every change.

You can play around with `/index.html` to see the effects of your changes.

To build a production bundle run:

```
npm run prod
```

After that you will have a ready to deploy bundle at `/dist`

## Contributing

Have a lot of experience with Webpack and suggestions on how we could improve this starter template? We'd love a PR!
Loading