From 2ade48568596f7b3f5774a540e39193ebe8d9bc3 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Wed, 9 Nov 2022 13:46:28 -0800 Subject: [PATCH] Make lkg task depend on local task instead (#51468) --- Herebyfile.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Herebyfile.mjs b/Herebyfile.mjs index f10c0de0304..9a4fff3df27 100644 --- a/Herebyfile.mjs +++ b/Herebyfile.mjs @@ -846,7 +846,7 @@ export const importDefinitelyTypedTests = task({ export const produceLKG = task({ name: "LKG", description: "Makes a new LKG out of the built js files", - dependencies: [localize, tsc, tsserver, services, lssl, otherOutputs, dts], + dependencies: [local], run: async () => { if (!cmdLineOptions.bundle) { throw new Error("LKG cannot be created when --bundle=false");