Skip to content
Open
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
24 changes: 18 additions & 6 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,29 @@
approvedGitRepositories:
- "**"
compressionLevel: mixed

enableScripts: true
enableGlobalCache: true

nmHoistingLimits: workspaces

nmMode: hardlinks-global

nodeLinker: node-modules

npmMinimalAgeGate: 7d

npmScopes:
mx:
npmAlwaysAuth: true
npmPublishRegistry: "https://maintainx-154574718005.d.codeartifact.us-east-1.amazonaws.com/npm/maintainx/"
npmRegistryServer: "https://maintainx-154574718005.d.codeartifact.us-east-1.amazonaws.com/npm/maintainx/"

patchFolder: ./.yarn/patches

plugins:
- path: ./bundles/@yarnpkg/plugin-unused-resolutions.js
spec: bundles/@yarnpkg/plugin-unused-resolutions.js
- checksum: d1b1142e8acf30b61023df541d3405617356e65ca4b02fa949a31ab1492e70b9b627456fdcb2fba670ebfcbb7d7fc7b5f99cc62360599bf13c2295fbbe96b5e3
path: .yarn/plugins/@yarnpkg/plugin-aws-codeartifact.cjs
spec: "https://github.com/MaintainX/yarn-plugin-aws-codeartifact/releases/download/v0.22.0-mx/plugin-aws-codeartifact.js"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed local plugin breaks tests

Medium Severity

The root config no longer loads @yarnpkg/plugin-unused-resolutions, which this repository implements. Fixture installs under tests/ inherit this config and expect the plugin to error on unused resolutions; without it, test.js assertions no longer match real behavior.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c40bb35. Configure here.

- checksum: 627893516485148067c93dbcad672faf71332596b318b10aabf48b7fbdb8d620fedaf1004b922dd08f77c7d0b688a9e6f722d604f2bd22b8196baf2d3d378566
path: .yarn/plugins/plugin-dedupe-on-install.cjs
spec: "https://raw.githubusercontent.com/ambar/yarn-plugin-dedupe-on-install/96ffd15fdb25310613f003a2c258dfd73eaa36a1/index.js"

yarnPath: .yarn/releases/yarn-4.14.1.cjs
yarnPath: .yarn/releases/yarn-4.11.0.cjs

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yarnPath points to missing file

High Severity

yarnPath now targets .yarn/releases/yarn-4.11.0.cjs, but that release file is not in the repository (only yarn-4.14.1.cjs is present). Any Yarn invocation that reads this config will fail before installs or tests can run.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c40bb35. Configure here.

Loading