From c592e90c3a2feb2a262dc28067fe5b9cb711a450 Mon Sep 17 00:00:00 2001 From: TkDodo Date: Sat, 27 Jun 2026 20:14:03 +0200 Subject: [PATCH] fix: lit produces dist-js which needs to be a prod build output --- nx.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nx.json b/nx.json index 143d6f40de3..5b9d0cb8162 100644 --- a/nx.json +++ b/nx.json @@ -69,7 +69,11 @@ "cache": true, "dependsOn": ["^build"], "inputs": ["production", "^production"], - "outputs": ["{projectRoot}/build", "{projectRoot}/dist"] + "outputs": [ + "{projectRoot}/build", + "{projectRoot}/dist", + "{projectRoot}/dist-cjs" + ] }, "test:build": { "cache": true,