-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…122) * fix(pnpm): absolute path matched exclude rules * chore(changeset): add changesets for fix * chore: remove console.log * Update .changeset/fair-days-rest.md Co-authored-by: Mateusz Burzyński <[email protected]> Co-authored-by: Mateusz Burzyński <[email protected]>
- Loading branch information
Showing
8 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@manypkg/cli": patch | ||
"@manypkg/get-packages": patch | ||
--- | ||
|
||
Fixed getting correct packages in pnpm workspaces with exclude rules. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"private": true, | ||
"name": "pnpm-exclude-workspace-case", | ||
"description": "pnpm exclude rule workspace work", | ||
"version": "1.0.0" | ||
} |
7 changes: 7 additions & 0 deletions
7
__fixtures__/pnpm-exclude-workspace-case/packages/pkg-a/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "pnpm-exclude-workspace-case-pkg-a", | ||
"version": "1.0.0", | ||
"dependencies": { | ||
"pnpm-exclude-workspace-case-pkg-b": "1.0.0" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
__fixtures__/pnpm-exclude-workspace-case/packages/pkg-b/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
{ | ||
"name": "pnpm-exclude-workspace-case-pkg-b", | ||
"version": "1.0.0" | ||
} |
5 changes: 5 additions & 0 deletions
5
__fixtures__/pnpm-exclude-workspace-case/packages/pnpm-exclude-workspace-case/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
{ | ||
"name": "pnpm-exclude-workspace-case-excluded-pkg", | ||
"version": "1.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
packages: | ||
- 'packages/**' | ||
# exclude packages that are inside myself name directories | ||
- '!**/pnpm-exclude-workspace-case/**' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters