Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fusepilot/undertaker-webpack
https://github.com/fusepilot/undertaker-webpack
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fusepilot/undertaker-webpack
- Owner: fusepilot
- Created: 2016-04-11T09:27:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-15T06:25:18.000Z (over 8 years ago)
- Last Synced: 2024-11-11T11:45:57.868Z (2 months ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# undertaker-wepback
[Undertaker](https://www.npmjs.com/package/undertaker) registry for creating [Webpack](https://webpack.github.io) projects.
## Installation
```bash
npm install --save-dev undertaker-wepback
```## Usage
```javascript
// gulpfile.jsconst 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
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D## Todos
* Document advanced functionality.
* Add and document more presets.
* Add tests.## License
The MIT License (MIT)