-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(yarn fixtures) initial edge case fixture structure example for y…
…arn tooling (#323)
- Loading branch information
1 parent
3c243bc
commit 4c51b77
Showing
12 changed files
with
43 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
Empty file.
Empty file.
6 changes: 6 additions & 0 deletions
6
...n/testdata/trans_dep_name_and_revision_collision_with_prod_direct_dep/README.md
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 @@ | ||
### prod deps | ||
* a@^1.0.0 -> 1.0.1 | ||
|
||
### dev deps | ||
* b@^2.0.0 -> 2.0.2 | ||
* a^1.0.0 -> 1.0.1 |
10 changes: 10 additions & 0 deletions
10
...ols/yarn/testdata/trans_dep_name_and_revision_collision_with_prod_direct_dep/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,10 @@ | ||
{ | ||
"name": "testdata", | ||
"version": "1.0.0", | ||
"dependencies": { | ||
"a":"^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"b":"^2.0.0" | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...dtools/yarn/testdata/trans_dep_name_and_revision_collision_with_prod_direct_dep/yarn.lock
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 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
a@^1.0.0: | ||
version "1.0.1" | ||
resolved "someurl" | ||
|
||
b@^2.0.0: | ||
version "2.0.1" | ||
resolved "someurl" | ||
dependencies: | ||
a "^1.0.0" |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.