-
Notifications
You must be signed in to change notification settings - Fork 914
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignoring node_modules folders inside nested workspaces as Lerna scopes (
#3025) * fix(config-lerna-scopes): fix the problem for not ignoring node modules for nested workspaces * test(config-lerna-scopes): add tests for ignoring node modules works for nested workspaces scopes
- Loading branch information
1 parent
b273403
commit e597735
Showing
8 changed files
with
42 additions
and
1 deletion.
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
4 changes: 4 additions & 0 deletions
4
...es/fixtures/nested-workspaces/@packages/a/nested-a/node_modules/dependency-a/package.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
@commitlint/config-lerna-scopes/fixtures/nested-workspaces/@packages/a/nested-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,4 @@ | ||
{ | ||
"name": "@packages/nested-a", | ||
"version": "1.0.0" | ||
} |
4 changes: 4 additions & 0 deletions
4
...es/fixtures/nested-workspaces/@packages/b/nested-b/node_modules/dependency-b/package.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
@commitlint/config-lerna-scopes/fixtures/nested-workspaces/@packages/b/nested-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,4 @@ | ||
{ | ||
"name": "@packages/nested-b", | ||
"version": "1.0.0" | ||
} |
11 changes: 11 additions & 0 deletions
11
@commitlint/config-lerna-scopes/fixtures/nested-workspaces/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,11 @@ | ||
{ | ||
"name": "nested-workspaces", | ||
"version": "1.0.0", | ||
"workspaces": [ | ||
"@packages/**" | ||
], | ||
"devDependencies": { | ||
"lerna": "^4.0.0", | ||
"@lerna/project": "^4.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
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