Merge branch 'develop' of https://github.com/tidusjar/ombi into develop

pull/2468/head^2
TidusJar 6 years ago
commit 55910d6586

@ -1,6 +1,6 @@
# Changelog
## (unreleased)
## v3.0.3587 (2018-08-19)
### **New Features**

@ -30,7 +30,7 @@ function getEnvOptions() {
function webpack(type) {
// 'webpack' instead of direct path can cause https://github.com/angular/angular-cli/issues/6417
return run(`node node_modules\\webpack\\bin\\webpack.js --config webpack.config${type ? `.${type}` : ""}.ts${getEnvOptions()}`).exec();
return run(`node ${path.join('node_modules', 'webpack', 'bin', 'webpack.js')} --config webpack.config${type ? `.${type}` : ""}.ts${getEnvOptions()}`).exec();
}
gulp.task("vendor", () => {

Loading…
Cancel
Save