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
7 changes: 7 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,10 @@ prefer-frozen-lockfile = true

# Use isolated linker (best compatibility with Node ecosystem tools)
node-linker = isolated

# Hoist commonly used tools to the root to prevent duplicates and speed up resolution
public-hoist-pattern[] = typescript
public-hoist-pattern[] = eslint
public-hoist-pattern[] = *@plane/*
Comment on lines +50 to +52
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Correct the glob pattern for @plane scoped packages.

The pattern *@plane/* uses incorrect glob syntax and won't match @plane/* scoped packages as intended. In glob patterns, the leading * matches any characters before @plane/, so it would match foo@plane/bar instead of @plane/something.

Apply this diff to fix the pattern:

-public-hoist-pattern[] = *@plane/*
+public-hoist-pattern[] = @plane/*
🤖 Prompt for AI Agents
In .npmrc around lines 50 to 52, the glob pattern for @plane scoped packages is
incorrect; replace the existing public-hoist-pattern[] = *@plane/* entry with
public-hoist-pattern[] = @plane/* so the pattern matches packages scoped under
@plane (e.g., @plane/foo) instead of incorrectly matching strings that contain
@plane in the middle.

public-hoist-pattern[] = vite
public-hoist-pattern[] = turbo
7 changes: 6 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading