Skip to content

Commit c1261c9

Browse files
rwjbluearcanis
authored andcommittedJan 4, 2019
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).
1 parent d7811e4 commit c1261c9

File tree

2 files changed

+28
-14
lines changed

2 files changed

+28
-14
lines changed
 

‎.eslintrc.json

+14
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,20 @@
3737
"rules": {
3838
"no-console": "off"
3939
}
40+
},
41+
{
42+
"files": [
43+
"src/util/generate-pnp-map-api.tpl.js"
44+
],
45+
"rules": {
46+
"prettier/prettier": ["error", {
47+
"singleQuote": true,
48+
"trailingComma": "es5",
49+
"bracketSpacing": false,
50+
"printWidth": 120,
51+
"parser": "flow"
52+
}]
53+
}
4054
}
4155
]
4256
}

‎src/util/generate-pnp-map-api.tpl.js

+14-14
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function blacklistCheck(locator) {
8282
`A package has been resolved through a blacklisted path - this is usually caused by one of your tools calling`,
8383
`"realpath" on the return value of "require.resolve". Since the returned values use symlinks to disambiguate`,
8484
`peer dependencies, they must be passed untransformed to "require".`,
85-
].join(` `),
85+
].join(` `)
8686
);
8787
}
8888

@@ -116,7 +116,7 @@ function getPackageInformationSafe(packageLocator) {
116116
if (!packageInformation) {
117117
throw makeError(
118118
`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)`
120120
);
121121
}
122122

@@ -348,7 +348,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
348348
{
349349
request,
350350
issuer,
351-
},
351+
}
352352
);
353353
}
354354

@@ -392,7 +392,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
392392
{
393393
request,
394394
issuer,
395-
},
395+
}
396396
);
397397
}
398398

@@ -424,30 +424,30 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
424424
throw makeError(
425425
`MISSING_PEER_DEPENDENCY`,
426426
`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}
428428
);
429429
} else {
430430
throw makeError(
431431
`MISSING_PEER_DEPENDENCY`,
432432
`Package "${issuerLocator.name}@${issuerLocator.reference}" is trying to access a peer dependency ("${dependencyName}") that should be provided by its direct ancestor but isn't`,
433-
{request, issuer, issuerLocator: Object.assign({}, issuerLocator), dependencyName},
433+
{request, issuer, issuerLocator: Object.assign({}, issuerLocator), dependencyName}
434434
);
435435
}
436436
} else {
437437
if (issuerLocator === topLevelLocator) {
438438
throw makeError(
439439
`UNDECLARED_DEPENDENCY`,
440440
`You cannot require a package ("${dependencyName}") that is not declared in your dependencies (via "${issuer}")`,
441-
{request, issuer, dependencyName},
441+
{request, issuer, dependencyName}
442442
);
443443
} else {
444444
const candidates = Array.from(issuerInformation.packageDependencies.keys());
445445
throw makeError(
446446
`UNDECLARED_DEPENDENCY`,
447447
`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(
448-
`, `,
448+
`, `
449449
)})`,
450-
{request, issuer, issuerLocator: Object.assign({}, issuerLocator), dependencyName, candidates},
450+
{request, issuer, issuerLocator: Object.assign({}, issuerLocator), dependencyName, candidates}
451451
);
452452
}
453453
}
@@ -463,7 +463,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
463463
throw makeError(
464464
`MISSING_DEPENDENCY`,
465465
`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)`,
466-
{request, issuer, dependencyLocator: Object.assign({}, dependencyLocator)},
466+
{request, issuer, dependencyLocator: Object.assign({}, dependencyLocator)}
467467
);
468468
}
469469

@@ -486,7 +486,7 @@ exports.resolveToUnqualified = function resolveToUnqualified(request, issuer, {c
486486

487487
exports.resolveUnqualified = function resolveUnqualified(
488488
unqualifiedPath,
489-
{extensions = Object.keys(Module._extensions)} = {},
489+
{extensions = Object.keys(Module._extensions)} = {}
490490
) {
491491
const qualifiedPath = applyNodeExtensionResolution(unqualifiedPath, {extensions});
492492

@@ -496,7 +496,7 @@ exports.resolveUnqualified = function resolveUnqualified(
496496
throw makeError(
497497
`QUALIFIED_PATH_RESOLUTION_FAILED`,
498498
`Couldn't find a suitable Node resolution for unqualified path "${unqualifiedPath}"`,
499-
{unqualifiedPath},
499+
{unqualifiedPath}
500500
);
501501
}
502502
};
@@ -550,7 +550,7 @@ exports.resolveRequest = function resolveRequest(request, issuer, {considerBuilt
550550
request,
551551
issuer,
552552
realIssuer,
553-
},
553+
}
554554
);
555555
}
556556
}
@@ -673,7 +673,7 @@ exports.setup = function setup() {
673673
if (optionNames.size > 0) {
674674
throw makeError(
675675
`UNSUPPORTED`,
676-
`Some options passed to require() aren't supported by PnP yet (${Array.from(optionNames).join(', ')})`,
676+
`Some options passed to require() aren't supported by PnP yet (${Array.from(optionNames).join(', ')})`
677677
);
678678
}
679679

0 commit comments

Comments
 (0)
Please sign in to comment.