We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab59cda commit d45d649Copy full SHA for d45d649
src/webpack-shell-plugin.js
@@ -38,7 +38,7 @@ export default class WebpackShellPlugin {
38
39
handleScript(script) {
40
if (os.platform() === 'win32') {
41
- this.spreadStdoutAndStdErr(exec(script, puts));
+ this.spreadStdoutAndStdErr(exec(script, this.puts));
42
} else {
43
const {command, args} = this.serializeScript(script);
44
const proc = spawn(command, args, {stdio: 'inherit'});
0 commit comments