undertaker-webpack
v1.0.1
Published
[Undertaker](https://www.npmjs.com/package/undertaker) registry for creating [Webpack](https://webpack.github.io) projects.
Downloads
3
Readme
undertaker-wepback
Undertaker registry for creating Webpack projects.
Installation
npm install --save-dev undertaker-wepback
Usage
// gulpfile.js
const WebpackRegistery = require('undertaker-webpack')
gulp.registry(new WebpackRegistery({
prefix: 'ui', // namespace for generated tasks
path: './src/ui', // path to source files, needed for webpack-dev-server
entryFile: './src/ui/index.jsx'), // main entry file for webpack
outputPath: './build/ui'), // output location for compiled files
configTemplate: 'react', // optional webpack config preset
config: { // add additional webpack configuration
loaders: [{
test: /\.styl$/,
loader: 'style-loader!css-loader!stylus-loader',
}],
}
}))
Then run the ui task from Gulp to compile.
gulp ui
To start up a Webpack Dev Server run:
gulp ui:server
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Todos
- Document advanced functionality.
- Add and document more presets.
- Add tests.
License
The MIT License (MIT)