You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix generated .pnp.js compatibility with Node 6. (#6871)
* Fix generated .pnp.js compatibility with Node 6.
Prior to these changes the generated `.pnp.js` file would use trailing
commas for function invocations which is not allowed (and generates a
parse error) under Node 6.
This removes the offending trailing commas...
* Update lint config for src/util/generate-pnp-map-api.tpl.js.
This file does not get transpiled down for Node 4 compat like other
files, so we cannot use `"trailingComma": "all"` configuration (the
default prettier config for this repo).
Copy file name to clipboardexpand all lines: src/util/generate-pnp-map-api.tpl.js
+14-14
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ function blacklistCheck(locator) {
82
82
`A package has been resolved through a blacklisted path - this is usually caused by one of your tools calling`,
83
83
`"realpath" on the return value of "require.resolve". Since the returned values use symlinks to disambiguate`,
84
84
`peer dependencies, they must be passed untransformed to "require".`,
85
-
].join(` `),
85
+
].join(` `)
86
86
);
87
87
}
88
88
@@ -116,7 +116,7 @@ function getPackageInformationSafe(packageLocator) {
116
116
if(!packageInformation){
117
117
throwmakeError(
118
118
`INTERNAL`,
119
-
`Couldn't find a matching entry in the dependency tree for the specified parent (this is probably an internal error)`,
119
+
`Couldn't find a matching entry in the dependency tree for the specified parent (this is probably an internal error)`
120
120
);
121
121
}
122
122
@@ -348,7 +348,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
348
348
{
349
349
request,
350
350
issuer,
351
-
},
351
+
}
352
352
);
353
353
}
354
354
@@ -392,7 +392,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
392
392
{
393
393
request,
394
394
issuer,
395
-
},
395
+
}
396
396
);
397
397
}
398
398
@@ -424,30 +424,30 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
424
424
throwmakeError(
425
425
`MISSING_PEER_DEPENDENCY`,
426
426
`You seem to be requiring a peer dependency ("${dependencyName}"), but it is not installed (which might be because you're the top-level package)`,
427
-
{request, issuer, dependencyName},
427
+
{request, issuer, dependencyName}
428
428
);
429
429
}else{
430
430
throwmakeError(
431
431
`MISSING_PEER_DEPENDENCY`,
432
432
`Package "${issuerLocator.name}@${issuerLocator.reference}" is trying to access a peer dependency ("${dependencyName}") that should be provided by its direct ancestor but isn't`,
`Package "${issuerLocator.name}@${issuerLocator.reference}" (via "${issuer}") is trying to require the package "${dependencyName}" (via "${request}") without it being listed in its dependencies (${candidates.join(
@@ -463,7 +463,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
463
463
throwmakeError(
464
464
`MISSING_DEPENDENCY`,
465
465
`Package "${dependencyLocator.name}@${dependencyLocator.reference}" is a valid dependency, but hasn't been installed and thus cannot be required (it might be caused if you install a partial tree, such as on production environments)`,
0 commit comments