From 4c62aa23bc2cf0602696ef4cee112a2fb757f18b Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 15 Jul 2021 16:15:37 -0700 Subject: [PATCH] build: provide build artifact location directories instead of tar files Provide the location of the directories rather than the tar files as the release tooling inspects the package.json fiels to confirm the correct version being published. --- scripts/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.ts b/scripts/build.ts index c5d1440d88fb..977759ee29ef 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -404,7 +404,7 @@ export default async function ( if (!pkg.private) { tarLogger.info(`${pkgName} => ${pkg.tar}`); _tar(pkg.tar, pkg.dist); - output.push({ name: pkgName, outputPath: pkg.tar }); + output.push({ name: pkgName, outputPath: pkg.dist }); } });