proto-webpack-plugin
v1.0.1
Published
<div align="center"> <a href="https://github.com/webpack/webpack"> <img width="200" height="200" src="https://webpack.js.org/assets/icon-square-big.svg"> </a> <h1>Proto Webpack Plugin</h1> <p>Resolve all proto files in resolve dir and su
Downloads
2
Readme
npm install --save-dev proto-webpack-plugin
var ProtoWebpackPlugin = require('proto-webpack-plugin')
module.exports = {
plugins: [
new ProtoWebpackPlugin({
resolveDir: resolve('/src/statics/proto'),
outputFile: resolve('/src/statics/proto-bundle.js'),
matchNames: ['base', 'messages'] // optional
})
]
}