Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
942 changes: 942 additions & 0 deletions .yarn/releases/yarn-4.10.3.cjs

Large diffs are not rendered by default.

925 changes: 0 additions & 925 deletions .yarn/releases/yarn-4.4.1.cjs

This file was deleted.

12 changes: 11 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,14 @@ plugins:
- path: .yarn/plugins/local/plugin-workspaces-filter.js
- path: .yarn/plugins/local/plugin-lifecycle-scripts.js

yarnPath: .yarn/releases/yarn-4.4.1.cjs
yarnPath: .yarn/releases/yarn-4.10.3.cjs

# Configure the NPM minimal age gate to 3 days, meaning packages must be at
# least 3 days old to be installed.
npmMinimalAgeGate: 4320 # 3 days (in minutes)

# Override the minimal age gate, allowing certain packages to be installed
# regardless of their publish age.
npmPreapprovedPackages:
- '@metamask/*'
- '@lavamoat/*'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"typescript-eslint": "^8.6.0",
"vite": "^6.2.7"
},
"packageManager": "yarn@4.4.1",
"packageManager": "yarn@4.10.3",
"engines": {
"node": "^20 || >=22"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@
},
"packages": {
"ts-loader>micromatch>braces": true,
"ts-loader>micromatch>picomatch": true
"depcheck>readdirp>picomatch": true
}
},
"webpack>mime-types": {
Expand Down Expand Up @@ -860,7 +860,7 @@
"process": true
}
},
"ts-loader>micromatch>picomatch": {
"depcheck>readdirp>picomatch": {
"builtin": {
"path.basename": true,
"path.sep": true
Expand Down
2 changes: 1 addition & 1 deletion yarn.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ module.exports = defineConfig({
if (isChildWorkspace) {
workspace.unset('packageManager');
} else {
expectWorkspaceField(workspace, 'packageManager', 'yarn@4.4.1');
expectWorkspaceField(workspace, 'packageManager', 'yarn@4.10.3');
}

// All packages must specify a minimum Node.js version of 18.18.
Expand Down
Loading