Skip to content

Commit

Permalink
chore: fix ci, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Jan 7, 2019
1 parent 7c16f62 commit 0d26c69
Show file tree
Hide file tree
Showing 4 changed files with 1,180 additions and 22 deletions.
21 changes: 7 additions & 14 deletions .gitignore
@@ -1,16 +1,9 @@
node_modules
.DS_Store
*.log
logs
npm-debug.log*
npm-debug.log
coverage
node_modules

.nyc_output
coverage.lcov

.eslintcache
/coverage
/dist
/local
/reports
/node_modules
Thumbs.db
.idea
.vscode
*.sublime-project
*.sublime-workspace
20 changes: 12 additions & 8 deletions README.md
Expand Up @@ -26,19 +26,23 @@ and the `webpack.config.js` file in the root of your project, automagically, sho
you choose to let it. This negates the need for all of the repetitive setup and
config that you get with `koa-webpack-middleware`.

## Requirements

This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.
## Install

## Getting Started

To begin, you'll need to install `koa-webpack`:
Using npm:

```console
$ npm install koa-webpack --save-dev
npm install koa-webpack --save-dev
```

Next, setup the module in your code. (We're assuming ES6 syntax here)
<a href="https://www.patreon.com/shellscape">
<img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160">
</a>

## Requirements

`koa-webpack` is an evergreen module. 🌲 This module requires an [Active LTS](https://github.com/nodejs/Release) Node version (v8.0.0+ or v10.0.0+), and Webpack v4.0.0+.

## Usage

```js
const Koa = require('koa');
Expand Down

0 comments on commit 0d26c69

Please sign in to comment.