From fb3bfde1913a5cd1f0273d111a50f9e9ed319b33 Mon Sep 17 00:00:00 2001 From: Joshua Honig Date: Thu, 28 Jul 2022 12:26:16 -0400 Subject: [PATCH] build: update build script --- build/publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/publish.js b/build/publish.js index e217fe2..ffb2677 100644 --- a/build/publish.js +++ b/build/publish.js @@ -136,7 +136,7 @@ async function validateVersion(pkgv) { // Render tsconfig console.log(chalk.cyanBright(' Rendering tsconfig.json')); const { stdout: tsconfig } = await exec( - 'pnpx tsc --project ./tsconfig.build.json --showConfig ', + 'npx tsc --project ./tsconfig.build.json --showConfig ', { cwd: pkgpath.root } ); await fs.writeFile(pubpath('tsconfig.json'), tsconfig, 'utf8');