From ab7f518a751e265aadbf9eb7bf14ffea8cff6e18 Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Sat, 7 Sep 2024 21:10:17 +0100 Subject: [PATCH] chore: add npm registry server to yarnrc (#2072) --- .prettierignore | 3 ++- .yarnrc.yml | 4 +++- eslint.config.mjs | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.prettierignore b/.prettierignore index 61c3bc75a..e526db106 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,2 @@ -.yarn +.yarn/ +.yarnrc.yml diff --git a/.yarnrc.yml b/.yarnrc.yml index 293a091eb..6b20196d9 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -1,7 +1,9 @@ nodeLinker: node-modules +npmRegistryServer: "https://registry.npmjs.org/" + plugins: - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs - spec: '@yarnpkg/plugin-interactive-tools' + spec: "@yarnpkg/plugin-interactive-tools" yarnPath: .yarn/releases/yarn-3.8.2.cjs diff --git a/eslint.config.mjs b/eslint.config.mjs index ef7a8ec83..2356e845a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -10,6 +10,7 @@ export default [ { ignores: [ '.yarn/**', + '.yarnrc.yml', 'node_modules/**', 'dist/**', 'test/regression-fixtures/**',