From 73e15bd78f1a124cfcd477e3a633bcbdfa9a5470 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Tue, 8 Dec 2020 11:06:17 -0800 Subject: [PATCH] Revert "build: update to use npm_package.pack rule (#39636)" This reverts commit fbfc7dff48cc9c63d3dd44934c7f17f8d0ba47f4. --- scripts/build/zone-js-builder.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/build/zone-js-builder.js b/scripts/build/zone-js-builder.js index 41108f7088..f0adb92909 100644 --- a/scripts/build/zone-js-builder.js +++ b/scripts/build/zone-js-builder.js @@ -35,7 +35,7 @@ function buildZoneJsPackage(destPath) { console.info(`${scriptPath}:`); console.info(' Building zone.js npm package'); console.info('##############################'); - exec(`${bazelCmd} run //packages/zone.js:npm_package.pack`); + exec(`${bazelCmd} build //packages/zone.js:npm_package`); // Create the output directory. const absDestPath = resolve(baseDir, destPath); @@ -46,6 +46,10 @@ function buildZoneJsPackage(destPath) { const buildOutputDir = `${bazelBin}/packages/zone.js/npm_package`; const distTargetDir = `${absDestPath}/zone.js`; + // Also create an archive so we can test the package itself. + // Currently, the `npm_package.pack` rule does not work on Windows, so run `npm pack` directly. + exec(`npm pack ${buildOutputDir}`, false, {cwd: baseDir}); + console.info(`# Copy npm_package artifacts to ${distTargetDir}`); rm('-rf', distTargetDir); cp('-R', buildOutputDir, distTargetDir);