forked from yarnpkg/yarn
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 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
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 @@ | ||
workspaces-experimental true |
10 changes: 10 additions & 0 deletions
10
__tests__/fixtures/install/workspaces-install-scripts/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": "my-project", | ||
"private": true, | ||
"dependencies": { | ||
"left-pad": "1.1.3" | ||
}, | ||
"workspaces": [ | ||
"packages/*" | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
__tests__/fixtures/install/workspaces-install-scripts/packages/workspace-2/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": "workspace-2", | ||
"version": "1.0.0", | ||
"dependencies": { | ||
"workspace-3": "1.0.0" | ||
} | ||
} |
Empty file.
14 changes: 14 additions & 0 deletions
14
__tests__/fixtures/install/workspaces-install-scripts/packages/workspace-3/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,14 @@ | ||
{ | ||
"name": "workspace-3", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"prepublish": "cpy src.js prepublish.js", | ||
"prepublishOnly": "cpy src.js prepublishOnly.js", | ||
"prepare": "cpy src.js prepare.js", | ||
"preinstall": "cpy src.js preinstall.js", | ||
"postinstall": "cpy src.js postinstall.js" | ||
}, | ||
"dependencies": { | ||
"repeat-string": "1.6.1" | ||
} | ||
} |
Empty file.
Binary file added
BIN
+940 Bytes
__tests__/fixtures/request-cache/GET/registry.npmjs.org/isarray.bin
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.58 KB
__tests__/fixtures/request-cache/GET/registry.npmjs.org/repeat-string.bin
Binary file not shown.
Binary file added
BIN
+961 Bytes
__tests__/fixtures/request-cache/GET/registry.npmjs.org/right-pad.bin
Binary file not shown.