Skip to content

Commit

Permalink
Merge pull request #23066 from storybookjs/kasper/use-local-registry-…
Browse files Browse the repository at this point in the history
…for-all-packages

Build: Use local registry for all packages
  • Loading branch information
kasperpeulen committed Jun 14, 2023
1 parent 64cde8e commit 3c73620
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/lib/cli/src/repro-generators/scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const configureYarn2ForE2E = async ({ cwd }: Options) => {
// eslint-disable-next-line @typescript-eslint/no-shadow
const command = [
// ⚠️ Need to set registry because Yarn 2 is not using the conf of Yarn 1 (URL is hardcoded in CircleCI config.yml)
`yarn config set npmScopes --json '{ "storybook": { "npmRegistryServer": "http://localhost:6001/" } }'`,
`yarn config set npmRegistryServer http://localhost:6001/`,
// Some required magic to be able to fetch deps from local registry
`yarn config set unsafeHttpWhitelist --json '["localhost"]'`,
// Disable fallback mode to make sure everything is required correctly
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/yarn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const configureYarn2ForVerdaccio = async ({ cwd, dryRun, debug }: YarnOpt
`yarn config set enableGlobalCache false`,
`yarn config set enableMirror false`,
// ⚠️ Need to set registry because Yarn 2 is not using the conf of Yarn 1 (URL is hardcoded in CircleCI config.yml)
`yarn config set npmScopes --json '{ "storybook": { "npmRegistryServer": "http://localhost:6001/" } }'`,
`yarn config set npmRegistryServer http://localhost:6001/`,
// Some required magic to be able to fetch deps from local registry
`yarn config set unsafeHttpWhitelist --json '["localhost"]'`,
// Disable fallback mode to make sure everything is required correctly
Expand Down

0 comments on commit 3c73620

Please sign in to comment.