diff --git a/aio/tools/cli-patches/patch.js b/aio/tools/cli-patches/patch.js index 28a61bdba4..70e7a20b8b 100644 --- a/aio/tools/cli-patches/patch.js +++ b/aio/tools/cli-patches/patch.js @@ -4,9 +4,9 @@ const sh = require('shelljs'); PATCH_LOCK = 'node_modules/@angular/cli/models/webpack-configs/.patched'; if (!fs.existsSync(PATCH_LOCK)) { + sh.exec('patch -p0 -i tools/cli-patches/ngo-loader.patch'); + sh.exec('patch -p0 -i node_modules/purify/angular-cli.patch'); + sh.exec('patch -p0 -i tools/cli-patches/scope-hoisting.patch'); + sh.exec('patch -p0 -i tools/cli-patches/uglify-config.patch'); sh.touch(PATCH_LOCK); - sh.exec(`patch -p0 -i tools/cli-patches/ngo-loader.patch && - patch -p0 -i node_modules/purify/angular-cli.patch && - patch -p0 -i tools/cli-patches/scope-hoisting.patch && - patch -p0 -i tools/cli-patches/uglify-config.patch`); }