diff --git a/build.mjs b/build.mjs index 3923b27b..031a6f95 100644 --- a/build.mjs +++ b/build.mjs @@ -13,7 +13,16 @@ const isDotSafeIdentifier = (str) => { for (const k in process.env) { /* Skip environment variables that should be evaluated at runtime */ // Keep these dynamic so code isn't tree-shaken based on CI build env - if (["HOME", "USER", "XDG_CONFIG_HOME", "SMITHERY_BEARER_AUTH"].includes(k)) + if ( + [ + "HOME", + "USER", + "XDG_CONFIG_HOME", + "SMITHERY_BEARER_AUTH", + "REGISTRY_ENDPOINT", + "ANALYTICS_ENDPOINT", + ].includes(k) + ) continue // Skip variables whose names are not dot-safe identifiers (e.g., those containing hyphens, parentheses, etc.) diff --git a/package.json b/package.json index 8808124b..574652f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smithery/cli", - "version": "3.2.0", + "version": "3.2.2", "type": "module", "private": false, "homepage": "https://smithery.ai/",