浮声新志

webpack插件篇:WebpackShellPlugin详解

用途说明

WebpackShellPlugin ()

Fires shell commands before and after webpack builds. Great for reporting tools, testing, or opening your browser for development.

Learn more.

webpack.config.js配置

1
2
3
4
5
6
7
8
9
10
11
const WebpackShellPlugin = require('webpack-shell-plugin');
var plugins = [];
{
plugins: [
new WebpackShellPlugin({
onBuildStart: ['echo "Starting"'],
onBuildEnd: ['python pi.py', 'node openBrowser.js', 'haxe game.hx && ssh -i /myPems/key.pem BObama@healthcare.gov']
})
]
}

案例

1
2