-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding exception handlers and test cases
- Loading branch information
1 parent
02f7d23
commit 87b447f
Showing
8 changed files
with
151 additions
and
0 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
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
9 changes: 9 additions & 0 deletions
9
npm_and_yarn/spec/fixtures/projects/pnpm/missing_workspace_package/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,9 @@ | ||
{ | ||
"author": "name", | ||
"private": true, | ||
"description": "The storybook for waystone-ui", | ||
"devDependencies": { | ||
"@waystone/tsconfig": "workspace:*", | ||
"storybook": "^8.1.1" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
npm_and_yarn/spec/fixtures/projects/pnpm/missing_workspace_package/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
npm_and_yarn/spec/fixtures/projects/pnpm/missing_workspace_package/pnpm-workspace.yaml
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,3 @@ | ||
packages: | ||
- 'apps/*' | ||
- 'packages/*' |
13 changes: 13 additions & 0 deletions
13
npm_and_yarn/spec/fixtures/projects/pnpm/peer_dep_issues/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,13 @@ | ||
{ | ||
"name": "name", | ||
"private": true, | ||
"packageManager": "pnpm@9.6.0", | ||
"workspaces": [ | ||
"packages/*", | ||
"packages/ts-for-gir/*", | ||
"examples/*" | ||
], | ||
"devDependencies": { | ||
"turbo": "2.0.14" | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
npm_and_yarn/spec/fixtures/projects/pnpm/peer_dep_issues/pnpm-lock.yaml
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
npm_and_yarn/spec/fixtures/projects/pnpm/peer_dep_issues/pnpm-workspace.yaml
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 @@ | ||
packages: | ||
- "packages/*" | ||
- "packages/ts-for-gir/*" | ||
- "examples/*" |