@yarnpkg/plugin-pnpm 1.1.0-rc.7 → 1.1.0-rc.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/PnpmLinker.js +2 -2
- package/package.json +7 -7
package/lib/PnpmLinker.js
CHANGED
|
@@ -223,11 +223,11 @@ class PnpmInstaller {
|
|
|
223
223
|
if (!expectedEntries.has(record))
|
|
224
224
|
removals.push(fslib_1.xfs.removePromise(fslib_1.ppath.join(storeLocation, record)));
|
|
225
225
|
await Promise.all(removals);
|
|
226
|
-
await removeIfEmpty(storeLocation);
|
|
227
226
|
}
|
|
228
227
|
// Wait for the package installs to catch up
|
|
229
228
|
await this.asyncActions.wait(),
|
|
230
|
-
await removeIfEmpty(
|
|
229
|
+
await removeIfEmpty(storeLocation);
|
|
230
|
+
await removeIfEmpty(getNodeModulesLocation(this.opts.project));
|
|
231
231
|
return {
|
|
232
232
|
customData: this.customData,
|
|
233
233
|
};
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarnpkg/plugin-pnpm",
|
|
3
|
-
"version": "1.1.0-rc.
|
|
3
|
+
"version": "1.1.0-rc.8",
|
|
4
4
|
"license": "BSD-2-Clause",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@yarnpkg/fslib": "^2.6.1-rc.
|
|
8
|
-
"@yarnpkg/plugin-pnp": "^3.1.2-rc.
|
|
7
|
+
"@yarnpkg/fslib": "^2.6.1-rc.5",
|
|
8
|
+
"@yarnpkg/plugin-pnp": "^3.1.2-rc.10",
|
|
9
9
|
"@yarnpkg/plugin-stage": "^3.1.1",
|
|
10
10
|
"clipanion": "^3.2.0-rc.4",
|
|
11
11
|
"p-limit": "^2.2.0",
|
|
12
12
|
"tslib": "^1.13.0"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@yarnpkg/cli": "^3.2.0-rc.
|
|
16
|
-
"@yarnpkg/core": "^3.2.0-rc.
|
|
15
|
+
"@yarnpkg/cli": "^3.2.0-rc.10",
|
|
16
|
+
"@yarnpkg/core": "^3.2.0-rc.10"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@yarnpkg/cli": "^3.2.0-rc.
|
|
20
|
-
"@yarnpkg/core": "^3.2.0-rc.
|
|
19
|
+
"@yarnpkg/cli": "^3.2.0-rc.10",
|
|
20
|
+
"@yarnpkg/core": "^3.2.0-rc.10"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|