@yarnpkg/plugin-pnp 4.0.0-rc.26 → 4.0.0-rc.28

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/index.d.ts CHANGED
@@ -16,6 +16,7 @@ export declare const quotePathIfNeeded: (path: string) => string;
16
16
  declare module '@yarnpkg/core' {
17
17
  interface ConfigurationValueMap {
18
18
  nodeLinker: string;
19
+ winLinkType: string;
19
20
  pnpMode: string;
20
21
  pnpShebang: string;
21
22
  pnpIgnorePatterns: Array<string>;
package/lib/index.js CHANGED
@@ -61,6 +61,15 @@ const plugin = {
61
61
  type: core_1.SettingsType.STRING,
62
62
  default: `pnp`,
63
63
  },
64
+ winLinkType: {
65
+ description: `Whether Yarn should use Windows Junctions or symlinks when creating links on Windows.`,
66
+ type: core_1.SettingsType.STRING,
67
+ values: [
68
+ core_1.WindowsLinkType.JUNCTIONS,
69
+ core_1.WindowsLinkType.SYMLINKS,
70
+ ],
71
+ default: core_1.WindowsLinkType.JUNCTIONS,
72
+ },
64
73
  pnpMode: {
65
74
  description: `If 'strict', generates standard PnP maps. If 'loose', merges them with the n_m resolution.`,
66
75
  type: core_1.SettingsType.STRING,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarnpkg/plugin-pnp",
3
- "version": "4.0.0-rc.26",
3
+ "version": "4.0.0-rc.28",
4
4
  "stableVersion": "3.2.4",
5
5
  "license": "BSD-2-Clause",
6
6
  "main": "./lib/index.js",
@@ -10,22 +10,22 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@types/semver": "^7.1.0",
13
- "@yarnpkg/fslib": "^3.0.0-rc.26",
14
- "@yarnpkg/plugin-stage": "^4.0.0-rc.26",
15
- "@yarnpkg/pnp": "^4.0.0-rc.26",
13
+ "@yarnpkg/fslib": "^3.0.0-rc.28",
14
+ "@yarnpkg/plugin-stage": "^4.0.0-rc.28",
15
+ "@yarnpkg/pnp": "^4.0.0-rc.28",
16
16
  "clipanion": "^3.2.0-rc.10",
17
17
  "micromatch": "^4.0.2",
18
18
  "semver": "^7.1.2",
19
19
  "tslib": "^2.4.0"
20
20
  },
21
21
  "peerDependencies": {
22
- "@yarnpkg/cli": "^4.0.0-rc.26",
23
- "@yarnpkg/core": "^4.0.0-rc.26"
22
+ "@yarnpkg/cli": "^4.0.0-rc.28",
23
+ "@yarnpkg/core": "^4.0.0-rc.28"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/micromatch": "^4.0.1",
27
- "@yarnpkg/cli": "^4.0.0-rc.26",
28
- "@yarnpkg/core": "^4.0.0-rc.26"
27
+ "@yarnpkg/cli": "^4.0.0-rc.28",
28
+ "@yarnpkg/core": "^4.0.0-rc.28"
29
29
  },
30
30
  "repository": {
31
31
  "type": "git",