From 352372053cc5bca39fc45b8b763bcf2d24ffe061 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Fri, 17 May 2024 16:42:24 -0400 Subject: [PATCH] fix(repo): hash proper projects when nx (#23506) ## Current Behavior The `prepopulate-local-registry` task was not being hashed according to the packages properly. ## Expected Behavior The `prepopulate-local-registry` task is hashing the packages we build for publishing. ## Related Issue(s) Fixes # --- project.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/project.json b/project.json index 0b7e5c25a9..a191d8df29 100644 --- a/project.json +++ b/project.json @@ -12,6 +12,17 @@ }, "populate-local-registry-storage": { "cache": true, + "inputs": [ + { + "input": "production", + "projects": [ + "*", + "!nx-dev", + "!typedoc-theme", + "!tools-documentation-create-embeddings" + ] + } + ], "command": "node ./scripts/local-registry/run-populate-storage.mjs", "outputs": ["{workspaceRoot}/build/local-registry/storage"] }