@yarnpkg/plugin-pnpm 2.1.1 → 2.1.2

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 CHANGED
@@ -319,7 +319,7 @@ async function removeIfEmpty(dir) {
319
319
  await fslib_1.xfs.rmdirPromise(dir);
320
320
  }
321
321
  catch (error) {
322
- if (error.code !== `ENOENT` && error.code !== `ENOTEMPTY`) {
322
+ if (error.code !== `ENOENT` && error.code !== `ENOTEMPTY` && error.code !== `EBUSY`) {
323
323
  throw error;
324
324
  }
325
325
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarnpkg/plugin-pnpm",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "license": "BSD-2-Clause",
5
5
  "main": "./lib/index.js",
6
6
  "exports": {
@@ -16,12 +16,12 @@
16
16
  "tslib": "^2.4.0"
17
17
  },
18
18
  "peerDependencies": {
19
- "@yarnpkg/cli": "^4.9.2",
20
- "@yarnpkg/core": "^4.4.2"
19
+ "@yarnpkg/cli": "^4.9.3",
20
+ "@yarnpkg/core": "^4.4.3"
21
21
  },
22
22
  "devDependencies": {
23
- "@yarnpkg/cli": "^4.9.2",
24
- "@yarnpkg/core": "^4.4.2"
23
+ "@yarnpkg/cli": "^4.9.3",
24
+ "@yarnpkg/core": "^4.4.3"
25
25
  },
26
26
  "repository": {
27
27
  "type": "git",