Skip to content

Commit

Permalink
Merge pull request #3 from nickpape/master
Browse files Browse the repository at this point in the history
Add a README.json
  • Loading branch information
dzearing committed Mar 25, 2016
2 parents fa0ed75 + 03a08fe commit ea773cd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Description
`gulp-core-build-webpack` is a plugin for gulp-core-build which introduces the ability to bundle various source files into a set of bundles, using webpack.

# Tasks
## WebpackTask

### Description
This task invokes webpack using a consumer-specified `webpack.config.js` on a package.

### Command Line Options
If the `--initwebpack` flag is passed to the command line, this task will initialize a `webpack.config.js` which bundles `lib/index.js` into `dist/{packagename}.js as a UMD module.

### Config
```typescript
interface IWebpackConfig {
configPath: string;
}
```
* **configPath** used to specify the local package relative path to a `webpack.config.js`

Usage:
```typescript
build.webpack.setConfig({
configPath: "./webpack.config.js"
})
```

0 comments on commit ea773cd

Please sign in to comment.