@embroider/core 3.4.5 → 3.4.6-unstable.35f9ecd
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/package.json +13 -11
- package/src/app-files.d.ts +2 -3
- package/src/app-files.js +1 -1
- package/src/app-files.js.map +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js.map +1 -1
- package/src/module-resolver.d.ts +21 -15
- package/src/module-resolver.js +221 -191
- package/src/module-resolver.js.map +1 -1
- package/src/node-resolve.d.ts +33 -0
- package/src/node-resolve.js +131 -0
- package/src/node-resolve.js.map +1 -0
- package/src/virtual-content.d.ts +6 -2
- package/src/virtual-content.js +80 -38
- package/src/virtual-content.js.map +1 -1
- package/LICENSE +0 -21
package/src/module-resolver.js
CHANGED
@@ -15,63 +15,59 @@ const path_1 = require("path");
|
|
15
15
|
const shared_internals_2 = require("@embroider/shared-internals");
|
16
16
|
const debug_1 = __importDefault(require("debug"));
|
17
17
|
const assert_never_1 = __importDefault(require("assert-never"));
|
18
|
-
const
|
18
|
+
const reverse_exports_1 = __importDefault(require("@embroider/reverse-exports"));
|
19
|
+
const resolve_exports_1 = require("resolve.exports");
|
19
20
|
const virtual_content_1 = require("./virtual-content");
|
20
21
|
const typescript_memoize_1 = require("typescript-memoize");
|
21
22
|
const describe_exports_1 = require("./describe-exports");
|
22
23
|
const fs_1 = require("fs");
|
24
|
+
const node_resolve_1 = require("./node-resolve");
|
23
25
|
const debug = (0, debug_1.default)('embroider:resolver');
|
26
|
+
// Using a formatter makes this work lazy so nothing happens when we aren't
|
27
|
+
// logging. It is unfortunate that formatters are a globally mutable config and
|
28
|
+
// you can only use single character names, but oh well.
|
29
|
+
debug_1.default.formatters.p = (s) => {
|
30
|
+
let cwd = process.cwd();
|
31
|
+
if (s.startsWith(cwd)) {
|
32
|
+
return s.slice(cwd.length + 1);
|
33
|
+
}
|
34
|
+
return s;
|
35
|
+
};
|
24
36
|
function logTransition(reason, before, after = before) {
|
25
37
|
if (after.isVirtual) {
|
26
|
-
debug(`
|
38
|
+
debug(`[%s:virtualized] %s because %s\n in %p`, before.debugType, before.specifier, reason, before.fromFile);
|
39
|
+
}
|
40
|
+
else if (after.resolvedTo) {
|
41
|
+
debug(`[%s:resolvedTo] %s because %s\n in %p`, before.debugType, before.specifier, reason, before.fromFile);
|
27
42
|
}
|
28
43
|
else if (before.specifier !== after.specifier) {
|
29
44
|
if (before.fromFile !== after.fromFile) {
|
30
|
-
debug(`aliased and rehomed
|
45
|
+
debug(`[%s:aliased and rehomed] %s to %s\n because %s\n from %p\n to %p`, before.debugType, before.specifier, after.specifier, reason, before.fromFile, after.fromFile);
|
31
46
|
}
|
32
47
|
else {
|
33
|
-
debug(`aliased
|
48
|
+
debug(`[%s:aliased] %s to %s\n because %s`, before.debugType, before.specifier, after.specifier, reason);
|
34
49
|
}
|
35
50
|
}
|
36
51
|
else if (before.fromFile !== after.fromFile) {
|
37
|
-
debug(`rehomed
|
52
|
+
debug(`[%s:rehomed] %s, because %s\n from %p\n to %p`, before.debugType, before.specifier, reason, before.fromFile, after.fromFile);
|
53
|
+
}
|
54
|
+
else if (after.isNotFound) {
|
55
|
+
debug(`[%s:not-found] %s because %s\n in %p`, before.debugType, before.specifier, reason, before.fromFile);
|
38
56
|
}
|
39
57
|
else {
|
40
|
-
debug(`
|
58
|
+
debug(`[%s:unchanged] %s because %s\n in %p`, before.debugType, before.specifier, reason, before.fromFile);
|
41
59
|
}
|
42
60
|
return after;
|
43
61
|
}
|
44
|
-
|
45
|
-
|
46
|
-
constructor(specifier, fromFile, isVirtual, meta) {
|
47
|
-
this.specifier = specifier;
|
48
|
-
this.fromFile = fromFile;
|
49
|
-
this.isVirtual = isVirtual;
|
50
|
-
this.meta = meta;
|
51
|
-
}
|
52
|
-
alias(specifier) {
|
53
|
-
return new NodeModuleRequest(specifier, this.fromFile, false, this.meta);
|
54
|
-
}
|
55
|
-
rehome(fromFile) {
|
56
|
-
if (this.fromFile === fromFile) {
|
57
|
-
return this;
|
58
|
-
}
|
59
|
-
else {
|
60
|
-
return new NodeModuleRequest(this.specifier, fromFile, false, this.meta);
|
61
|
-
}
|
62
|
-
}
|
63
|
-
virtualize(filename) {
|
64
|
-
return new NodeModuleRequest(filename, this.fromFile, true, this.meta);
|
65
|
-
}
|
66
|
-
withMeta(meta) {
|
67
|
-
return new NodeModuleRequest(this.specifier, this.fromFile, this.isVirtual, meta);
|
68
|
-
}
|
62
|
+
function isTerminal(request) {
|
63
|
+
return request.isVirtual || request.isNotFound || Boolean(request.resolvedTo);
|
69
64
|
}
|
65
|
+
const compatPattern = /#embroider_compat\/(?<type>[^\/]+)\/(?<rest>.*)/;
|
70
66
|
class Resolver {
|
71
67
|
constructor(options) {
|
72
68
|
this.options = options;
|
73
69
|
}
|
74
|
-
beforeResolve(request) {
|
70
|
+
async beforeResolve(request) {
|
75
71
|
if (request.specifier === '@embroider/macros') {
|
76
72
|
// the macros package is always handled directly within babel (not
|
77
73
|
// necessarily as a real resolvable package), so we should not mess with it.
|
@@ -79,8 +75,11 @@ class Resolver {
|
|
79
75
|
// why we need to know about it.
|
80
76
|
return logTransition('early exit', request);
|
81
77
|
}
|
78
|
+
if (request.specifier === 'require') {
|
79
|
+
return this.external('early require', request, request.specifier);
|
80
|
+
}
|
82
81
|
request = this.handleFastbootSwitch(request);
|
83
|
-
request = this.handleGlobalsCompat(request);
|
82
|
+
request = await this.handleGlobalsCompat(request);
|
84
83
|
request = this.handleImplicitModules(request);
|
85
84
|
request = this.handleRenaming(request);
|
86
85
|
// we expect the specifier to be app relative at this point - must be after handleRenaming
|
@@ -96,95 +95,45 @@ class Resolver {
|
|
96
95
|
// that calls your build system's normal module resolver, this does both pre-
|
97
96
|
// and post-resolution adjustments as needed to implement our compatibility
|
98
97
|
// rules.
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
let
|
105
|
-
let out = gen.next();
|
106
|
-
while (!out.done) {
|
107
|
-
out = gen.next(await out.value);
|
108
|
-
}
|
109
|
-
return out.value;
|
110
|
-
}
|
111
|
-
// synchronous alternative to resolve() above. Because our own internals are
|
112
|
-
// all synchronous, you can use this if your defaultResolve function is
|
113
|
-
// synchronous.
|
114
|
-
resolveSync(request, defaultResolve) {
|
115
|
-
let gen = this.internalResolve(request, defaultResolve);
|
116
|
-
let out = gen.next();
|
117
|
-
while (!out.done) {
|
118
|
-
out = gen.next(out.value);
|
119
|
-
}
|
120
|
-
return out.value;
|
121
|
-
}
|
122
|
-
// Our core implementation is a generator so it can power both resolve() and
|
123
|
-
// resolveSync()
|
124
|
-
*internalResolve(request, defaultResolve) {
|
125
|
-
request = this.beforeResolve(request);
|
126
|
-
let resolution = yield defaultResolve(request);
|
98
|
+
async resolve(request) {
|
99
|
+
request = await this.beforeResolve(request);
|
100
|
+
if (request.resolvedTo) {
|
101
|
+
return request.resolvedTo;
|
102
|
+
}
|
103
|
+
let resolution = await request.defaultResolve();
|
127
104
|
switch (resolution.type) {
|
128
105
|
case 'found':
|
106
|
+
case 'ignored':
|
129
107
|
return resolution;
|
130
108
|
case 'not_found':
|
131
109
|
break;
|
132
110
|
default:
|
133
111
|
throw (0, assert_never_1.default)(resolution);
|
134
112
|
}
|
135
|
-
let nextRequest = this.fallbackResolve(request);
|
113
|
+
let nextRequest = await this.fallbackResolve(request);
|
136
114
|
if (nextRequest === request) {
|
137
115
|
// no additional fallback is available.
|
138
116
|
return resolution;
|
139
117
|
}
|
118
|
+
if (nextRequest.resolvedTo) {
|
119
|
+
return nextRequest.resolvedTo;
|
120
|
+
}
|
140
121
|
if (nextRequest.fromFile === request.fromFile && nextRequest.specifier === request.specifier) {
|
141
122
|
throw new Error('Bug Discovered! New request is not === original request but has the same fromFile and specifier. This will likely create a loop.');
|
142
123
|
}
|
143
|
-
if (nextRequest.isVirtual) {
|
144
|
-
// virtual requests are terminal, there is no more
|
145
|
-
// fallbackResolve around them. The defaultResolve is
|
146
|
-
// to implement them.
|
147
|
-
return
|
124
|
+
if (nextRequest.isVirtual || nextRequest.isNotFound) {
|
125
|
+
// virtual and NotFound requests are terminal, there is no more
|
126
|
+
// beforeResolve or fallbackResolve around them. The defaultResolve is
|
127
|
+
// expected to know how to implement them.
|
128
|
+
return nextRequest.defaultResolve();
|
148
129
|
}
|
149
|
-
return
|
130
|
+
return this.resolve(nextRequest);
|
150
131
|
}
|
151
132
|
// Use standard NodeJS resolving, with our required compatibility rules on
|
152
133
|
// top. This is a convenience method for calling resolveSync with the
|
153
134
|
// defaultResolve already configured to be "do the normal node thing".
|
154
|
-
nodeResolve(specifier, fromFile) {
|
155
|
-
|
156
|
-
if (request.isVirtual) {
|
157
|
-
return {
|
158
|
-
type: 'found',
|
159
|
-
result: {
|
160
|
-
type: 'virtual',
|
161
|
-
content: (0, virtual_content_1.virtualContent)(request.specifier, this),
|
162
|
-
filename: request.specifier,
|
163
|
-
},
|
164
|
-
};
|
165
|
-
}
|
166
|
-
try {
|
167
|
-
let filename = resolve_1.default.sync(request.specifier, {
|
168
|
-
basedir: (0, path_1.dirname)(request.fromFile),
|
169
|
-
extensions: this.options.resolvableExtensions,
|
170
|
-
});
|
171
|
-
return { type: 'found', result: { type: 'real', filename } };
|
172
|
-
}
|
173
|
-
catch (err) {
|
174
|
-
if (err.code !== 'MODULE_NOT_FOUND') {
|
175
|
-
throw err;
|
176
|
-
}
|
177
|
-
return { type: 'not_found', err };
|
178
|
-
}
|
179
|
-
});
|
180
|
-
switch (resolution.type) {
|
181
|
-
case 'not_found':
|
182
|
-
return resolution;
|
183
|
-
case 'found':
|
184
|
-
return resolution.result;
|
185
|
-
default:
|
186
|
-
throw (0, assert_never_1.default)(resolution);
|
187
|
-
}
|
135
|
+
async nodeResolve(specifier, fromFile) {
|
136
|
+
return (0, node_resolve_1.nodeResolve)(this, specifier, fromFile);
|
188
137
|
}
|
189
138
|
get packageCache() {
|
190
139
|
return shared_internals_2.RewrittenPackageCache.shared('embroider', this.options.appRoot);
|
@@ -201,6 +150,9 @@ class Resolver {
|
|
201
150
|
return owningPackage;
|
202
151
|
}
|
203
152
|
generateFastbootSwitch(request) {
|
153
|
+
if (isTerminal(request)) {
|
154
|
+
return request;
|
155
|
+
}
|
204
156
|
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
205
157
|
if (!pkg) {
|
206
158
|
return request;
|
@@ -218,7 +170,9 @@ class Resolver {
|
|
218
170
|
let fastbootFile = engineConfig.fastbootFiles[candidate];
|
219
171
|
if (fastbootFile) {
|
220
172
|
if (fastbootFile.shadowedFilename) {
|
221
|
-
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)((0, path_1.resolve)(pkg.root, fastbootFile.shadowedFilename), 'utf8'), {
|
173
|
+
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)((0, path_1.resolve)(pkg.root, fastbootFile.shadowedFilename), 'utf8'), {
|
174
|
+
configFile: false,
|
175
|
+
});
|
222
176
|
let switchFile = (0, virtual_content_1.fastbootSwitch)(candidate, (0, path_1.resolve)(pkg.root, 'package.json'), names);
|
223
177
|
if (switchFile === request.fromFile) {
|
224
178
|
return logTransition('internal lookup from fastbootSwitch', request);
|
@@ -237,6 +191,9 @@ class Resolver {
|
|
237
191
|
}
|
238
192
|
handleFastbootSwitch(request) {
|
239
193
|
var _a;
|
194
|
+
if (isTerminal(request)) {
|
195
|
+
return request;
|
196
|
+
}
|
240
197
|
let match = (0, virtual_content_1.decodeFastbootSwitch)(request.fromFile);
|
241
198
|
if (!match) {
|
242
199
|
return request;
|
@@ -275,12 +232,15 @@ class Resolver {
|
|
275
232
|
}
|
276
233
|
let entry = (_a = this.getEntryFromMergeMap(rel, pkg.root)) === null || _a === void 0 ? void 0 : _a.entry;
|
277
234
|
if ((entry === null || entry === void 0 ? void 0 : entry.type) === 'both') {
|
278
|
-
return logTransition('matched addon entry', request, request.alias(entry[section].
|
235
|
+
return logTransition('matched addon entry', request, request.alias(entry[section].specifier).rehome(entry[section].fromFile));
|
279
236
|
}
|
280
237
|
}
|
281
238
|
return logTransition('failed to match in fastboot switch', request);
|
282
239
|
}
|
283
240
|
handleImplicitModules(request) {
|
241
|
+
if (isTerminal(request)) {
|
242
|
+
return request;
|
243
|
+
}
|
284
244
|
let im = (0, virtual_content_1.decodeImplicitModules)(request.specifier);
|
285
245
|
if (!im) {
|
286
246
|
return request;
|
@@ -298,7 +258,10 @@ class Resolver {
|
|
298
258
|
return logTransition(`own implicit modules`, request, request.virtualize((0, path_1.resolve)(pkg.root, `-embroider-${im.type}.js`)));
|
299
259
|
}
|
300
260
|
}
|
301
|
-
handleGlobalsCompat(request) {
|
261
|
+
async handleGlobalsCompat(request) {
|
262
|
+
if (isTerminal(request)) {
|
263
|
+
return request;
|
264
|
+
}
|
302
265
|
let match = compatPattern.exec(request.specifier);
|
303
266
|
if (!match) {
|
304
267
|
return request;
|
@@ -326,52 +289,60 @@ class Resolver {
|
|
326
289
|
let target = this.parseGlobalPath(path, inEngine);
|
327
290
|
return logTransition('resolveHelper', request, request.alias(`${target.packageName}/helpers/${target.memberName}`).rehome((0, path_1.resolve)(inEngine.root, 'package.json')));
|
328
291
|
}
|
329
|
-
resolveComponent(path, inEngine, request) {
|
292
|
+
async resolveComponent(path, inEngine, request) {
|
330
293
|
let target = this.parseGlobalPath(path, inEngine);
|
331
294
|
let hbsModule = null;
|
332
295
|
let jsModule = null;
|
333
296
|
// first, the various places our template might be.
|
334
297
|
for (let candidate of this.componentTemplateCandidates(target.packageName)) {
|
335
|
-
let
|
336
|
-
|
337
|
-
|
298
|
+
let candidateSpecifier = `${target.packageName}${candidate.prefix}${target.memberName}${candidate.suffix}`;
|
299
|
+
let resolution = await this.resolve(request.alias(candidateSpecifier).rehome(target.from).withMeta({
|
300
|
+
runtimeFallback: false,
|
301
|
+
}));
|
302
|
+
if (resolution.type === 'found') {
|
303
|
+
hbsModule = resolution;
|
338
304
|
break;
|
339
305
|
}
|
340
306
|
}
|
341
307
|
// then the various places our javascript might be.
|
342
308
|
for (let candidate of this.componentJSCandidates(target.packageName)) {
|
343
|
-
let
|
309
|
+
let candidateSpecifier = `${target.packageName}${candidate.prefix}${target.memberName}${candidate.suffix}`;
|
310
|
+
let resolution = await this.resolve(request.alias(candidateSpecifier).rehome(target.from).withMeta({
|
311
|
+
runtimeFallback: false,
|
312
|
+
}));
|
344
313
|
// .hbs is a resolvable extension for us, so we need to exclude it here.
|
345
314
|
// It matches as a priority lower than .js, so finding an .hbs means
|
346
315
|
// there's definitely not a .js.
|
347
|
-
if (resolution.type === '
|
348
|
-
jsModule = resolution
|
316
|
+
if (resolution.type === 'found' && !resolution.filename.endsWith('.hbs')) {
|
317
|
+
jsModule = resolution;
|
349
318
|
break;
|
350
319
|
}
|
351
320
|
}
|
352
321
|
if (hbsModule) {
|
353
|
-
return logTransition(`resolveComponent found legacy HBS`, request, request.virtualize((0, virtual_content_1.virtualPairComponent)(hbsModule, jsModule)));
|
322
|
+
return logTransition(`resolveComponent found legacy HBS`, request, request.virtualize((0, virtual_content_1.virtualPairComponent)(hbsModule.filename, jsModule === null || jsModule === void 0 ? void 0 : jsModule.filename)));
|
354
323
|
}
|
355
324
|
else if (jsModule) {
|
356
|
-
return logTransition(`resolveComponent found only JS`, request, request.
|
325
|
+
return logTransition(`resolving to resolveComponent found only JS`, request, request.resolveTo(jsModule));
|
357
326
|
}
|
358
327
|
else {
|
359
328
|
return logTransition(`resolveComponent failed`, request);
|
360
329
|
}
|
361
330
|
}
|
362
|
-
resolveHelperOrComponent(path, inEngine, request) {
|
331
|
+
async resolveHelperOrComponent(path, inEngine, request) {
|
363
332
|
// resolveHelper just rewrites our request to one that should target the
|
364
333
|
// component, so here to resolve the ambiguity we need to actually resolve
|
365
334
|
// that candidate to see if it works.
|
366
335
|
let helperCandidate = this.resolveHelper(path, inEngine, request);
|
367
|
-
let helperMatch = this.
|
368
|
-
|
369
|
-
|
336
|
+
let helperMatch = await this.resolve(request.alias(helperCandidate.specifier).rehome(helperCandidate.fromFile).withMeta({
|
337
|
+
runtimeFallback: false,
|
338
|
+
}));
|
339
|
+
if (helperMatch.type === 'found') {
|
340
|
+
return logTransition('resolve to ambiguous case matched a helper', request, request.resolveTo(helperMatch));
|
370
341
|
}
|
371
342
|
// unlike resolveHelper, resolveComponent already does pre-resolution in
|
372
343
|
// order to deal with its own internal ambiguity around JS vs HBS vs
|
373
344
|
// colocation.≥
|
374
|
-
let componentMatch = this.resolveComponent(path, inEngine, request);
|
345
|
+
let componentMatch = await this.resolveComponent(path, inEngine, request);
|
375
346
|
if (componentMatch !== request) {
|
376
347
|
return logTransition('ambiguous case matched a cmoponent', request, componentMatch);
|
377
348
|
}
|
@@ -396,6 +367,7 @@ class Resolver {
|
|
396
367
|
}
|
397
368
|
*componentJSCandidates(inPackageName) {
|
398
369
|
yield { prefix: '/components/', suffix: '' };
|
370
|
+
yield { prefix: '/components/', suffix: '/index' };
|
399
371
|
yield { prefix: '/components/', suffix: '/component' };
|
400
372
|
let pods = this.podPrefix(inPackageName);
|
401
373
|
if (pods) {
|
@@ -414,10 +386,10 @@ class Resolver {
|
|
414
386
|
parseGlobalPath(path, inEngine) {
|
415
387
|
let parts = path.split('@');
|
416
388
|
if (parts.length > 1 && parts[0].length > 0) {
|
417
|
-
return { packageName: parts[0], memberName: parts[1], from: (0, path_1.resolve)(inEngine.root, '
|
389
|
+
return { packageName: parts[0], memberName: parts[1], from: (0, path_1.resolve)(inEngine.root, 'package.json') };
|
418
390
|
}
|
419
391
|
else {
|
420
|
-
return { packageName: inEngine.packageName, memberName: path, from: (0, path_1.resolve)(inEngine.root, '
|
392
|
+
return { packageName: inEngine.packageName, memberName: path, from: (0, path_1.resolve)(inEngine.root, 'package.json') };
|
421
393
|
}
|
422
394
|
}
|
423
395
|
engineConfig(packageName) {
|
@@ -449,8 +421,8 @@ class Resolver {
|
|
449
421
|
engineModules.set(inEngineName, {
|
450
422
|
type: 'app-only',
|
451
423
|
'app-js': {
|
452
|
-
|
453
|
-
|
424
|
+
specifier: (0, reverse_exports_1.default)(addon.packageJSON, inAddonName),
|
425
|
+
fromFile: addonConfig.canResolveFromFile,
|
454
426
|
fromPackageName: addon.name,
|
455
427
|
},
|
456
428
|
});
|
@@ -463,8 +435,8 @@ class Resolver {
|
|
463
435
|
engineModules.set(inEngineName, {
|
464
436
|
type: 'both',
|
465
437
|
'app-js': {
|
466
|
-
|
467
|
-
|
438
|
+
specifier: (0, reverse_exports_1.default)(addon.packageJSON, inAddonName),
|
439
|
+
fromFile: addonConfig.canResolveFromFile,
|
468
440
|
fromPackageName: addon.name,
|
469
441
|
},
|
470
442
|
'fastboot-js': prevEntry['fastboot-js'],
|
@@ -488,8 +460,8 @@ class Resolver {
|
|
488
460
|
engineModules.set(inEngineName, {
|
489
461
|
type: 'fastboot-only',
|
490
462
|
'fastboot-js': {
|
491
|
-
|
492
|
-
|
463
|
+
specifier: (0, reverse_exports_1.default)(addon.packageJSON, inAddonName),
|
464
|
+
fromFile: addonConfig.canResolveFromFile,
|
493
465
|
fromPackageName: addon.name,
|
494
466
|
},
|
495
467
|
});
|
@@ -502,8 +474,8 @@ class Resolver {
|
|
502
474
|
engineModules.set(inEngineName, {
|
503
475
|
type: 'both',
|
504
476
|
'fastboot-js': {
|
505
|
-
|
506
|
-
|
477
|
+
specifier: (0, reverse_exports_1.default)(addon.packageJSON, inAddonName),
|
478
|
+
fromFile: addonConfig.canResolveFromFile,
|
507
479
|
fromPackageName: addon.name,
|
508
480
|
},
|
509
481
|
'app-js': prevEntry['app-js'],
|
@@ -525,7 +497,7 @@ class Resolver {
|
|
525
497
|
return owningEngine;
|
526
498
|
}
|
527
499
|
handleRewrittenPackages(request) {
|
528
|
-
if (request
|
500
|
+
if (isTerminal(request)) {
|
529
501
|
return request;
|
530
502
|
}
|
531
503
|
let requestingPkg = this.packageCache.ownerOfFile(request.fromFile);
|
@@ -544,10 +516,6 @@ class Resolver {
|
|
544
516
|
targetPkg = this.packageCache.resolve(packageName, requestingPkg);
|
545
517
|
}
|
546
518
|
catch (err) {
|
547
|
-
// this is not the place to report resolution failures. If the thing
|
548
|
-
// doesn't resolve, we're just not interested in redirecting it for
|
549
|
-
// backward-compat, that's all. The rest of the system will take care of
|
550
|
-
// reporting a failure to resolve (or handling it a different way)
|
551
519
|
if (err.code !== 'MODULE_NOT_FOUND') {
|
552
520
|
throw err;
|
553
521
|
}
|
@@ -563,14 +531,26 @@ class Resolver {
|
|
563
531
|
return logTransition('request targets a moved package', request, this.resolveWithinMovedPackage(request, targetPkg));
|
564
532
|
}
|
565
533
|
else if (originalRequestingPkg !== requestingPkg) {
|
566
|
-
|
567
|
-
|
568
|
-
|
534
|
+
if (targetPkg) {
|
535
|
+
// in this case, the requesting package is moved but its destination is
|
536
|
+
// not, so we need to rehome the request back to the original location.
|
537
|
+
return logTransition('outbound request from moved package', request, request
|
538
|
+
// setting meta here because if this fails, we want the fallback
|
539
|
+
// logic to revert our rehome and continue from the *moved* package.
|
540
|
+
.withMeta({ originalFromFile: request.fromFile })
|
541
|
+
.rehome((0, path_1.resolve)(originalRequestingPkg.root, 'package.json')));
|
542
|
+
}
|
543
|
+
else {
|
544
|
+
// requesting package was moved and we failed to find its target. We
|
545
|
+
// can't let that accidentally succeed in the defaultResolve because we
|
546
|
+
// could escape the moved package system.
|
547
|
+
return logTransition('missing outbound request from moved package', request, request.notFound());
|
548
|
+
}
|
569
549
|
}
|
570
550
|
return request;
|
571
551
|
}
|
572
552
|
handleRenaming(request) {
|
573
|
-
if (request
|
553
|
+
if (isTerminal(request)) {
|
574
554
|
return request;
|
575
555
|
}
|
576
556
|
let packageName = (0, shared_internals_1.packageName)(request.specifier);
|
@@ -603,12 +583,34 @@ class Resolver {
|
|
603
583
|
return logTransition(`renamePackages`, request, request.alias(request.specifier.replace(packageName, this.options.renamePackages[packageName])));
|
604
584
|
}
|
605
585
|
}
|
606
|
-
if (pkg.
|
607
|
-
// we found a self-import
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
586
|
+
if (pkg.name === packageName) {
|
587
|
+
// we found a self-import
|
588
|
+
if (pkg.meta['auto-upgraded']) {
|
589
|
+
// auto-upgraded packages always get automatically adjusted. They never
|
590
|
+
// supported fancy package.json exports features so this direct mapping
|
591
|
+
// to the root is always right.
|
592
|
+
// "my-package/foo" -> "./foo"
|
593
|
+
// "my-package" -> "./" (this can't be just "." because node's require.resolve doesn't reliable support that)
|
594
|
+
let selfImportPath = request.specifier === pkg.name ? './' : request.specifier.replace(pkg.name, '.');
|
595
|
+
return logTransition(`v1 self-import`, request, request.alias(selfImportPath).rehome((0, path_1.resolve)(pkg.root, 'package.json')));
|
596
|
+
}
|
597
|
+
else {
|
598
|
+
// v2 packages are supposed to use package.json `exports` to enable
|
599
|
+
// self-imports, but not all build tools actually follow the spec. This
|
600
|
+
// is a workaround for badly behaved packagers.
|
601
|
+
//
|
602
|
+
// Known upstream bugs this works around:
|
603
|
+
// - https://github.com/vitejs/vite/issues/9731
|
604
|
+
if (pkg.packageJSON.exports) {
|
605
|
+
let found = (0, resolve_exports_1.exports)(pkg.packageJSON, request.specifier, {
|
606
|
+
browser: true,
|
607
|
+
conditions: ['default', 'imports'],
|
608
|
+
});
|
609
|
+
if (found === null || found === void 0 ? void 0 : found[0]) {
|
610
|
+
return logTransition(`v2 self-import with package.json exports`, request, request.alias(found === null || found === void 0 ? void 0 : found[0]).rehome((0, path_1.resolve)(pkg.root, 'package.json')));
|
611
|
+
}
|
612
|
+
}
|
613
|
+
}
|
612
614
|
}
|
613
615
|
return request;
|
614
616
|
}
|
@@ -617,16 +619,17 @@ class Resolver {
|
|
617
619
|
if (pkg.name.startsWith('@')) {
|
618
620
|
levels.push('..');
|
619
621
|
}
|
622
|
+
let originalFromFile = request.fromFile;
|
620
623
|
let newRequest = request.rehome((0, path_1.resolve)(pkg.root, ...levels, 'moved-package-target.js'));
|
621
624
|
if (newRequest === request) {
|
622
625
|
return request;
|
623
626
|
}
|
624
|
-
|
625
|
-
|
626
|
-
});
|
627
|
+
// setting meta because if this fails, we want the fallback to pick up back
|
628
|
+
// in the original requesting package.
|
629
|
+
return newRequest.withMeta({ originalFromFile });
|
627
630
|
}
|
628
631
|
preHandleExternal(request) {
|
629
|
-
if (request
|
632
|
+
if (isTerminal(request)) {
|
630
633
|
return request;
|
631
634
|
}
|
632
635
|
let { specifier, fromFile } = request;
|
@@ -659,7 +662,15 @@ class Resolver {
|
|
659
662
|
// engine
|
660
663
|
let logicalLocation = this.reverseSearchAppTree(pkg, request.fromFile);
|
661
664
|
if (logicalLocation) {
|
662
|
-
return logTransition('beforeResolve: relative import in app-js', request, request
|
665
|
+
return logTransition('beforeResolve: relative import in app-js', request, request
|
666
|
+
.alias('./' + path_1.posix.join((0, path_1.dirname)(logicalLocation.inAppName), request.specifier))
|
667
|
+
// it's important that we're rehoming this to the root of the engine
|
668
|
+
// (which we know really exists), and not to a subdir like
|
669
|
+
// logicalLocation.inAppName (which might not physically exist),
|
670
|
+
// because some environments (including node's require.resolve) will
|
671
|
+
// refuse to do resolution from a notional path that doesn't
|
672
|
+
// physically exist.
|
673
|
+
.rehome((0, path_1.resolve)(logicalLocation.owningEngine.root, 'package.json')));
|
663
674
|
}
|
664
675
|
return request;
|
665
676
|
}
|
@@ -674,11 +685,11 @@ class Resolver {
|
|
674
685
|
if (shared_internals_1.emberVirtualPeerDeps.has(packageName) && !pkg.hasDependency(packageName)) {
|
675
686
|
// addons (whether auto-upgraded or not) may use the app's
|
676
687
|
// emberVirtualPeerDeps, like "@glimmer/component" etc.
|
677
|
-
|
678
|
-
|
688
|
+
let addon = this.locateActiveAddon(packageName);
|
689
|
+
if (!addon) {
|
690
|
+
throw new Error(`${pkg.name} is trying to import the emberVirtualPeerDep "${packageName}", but it seems to be missing`);
|
679
691
|
}
|
680
|
-
|
681
|
-
return logTransition(`emberVirtualPeerDeps in v2 addon`, request, request.rehome(newHome));
|
692
|
+
return logTransition(`emberVirtualPeerDeps`, request, request.rehome(addon.canResolveFromFile));
|
682
693
|
}
|
683
694
|
// if this file is part of an addon's app-js, it's really the logical
|
684
695
|
// package to which it belongs (normally the app) that affects some policy
|
@@ -709,6 +720,22 @@ class Resolver {
|
|
709
720
|
}
|
710
721
|
return request;
|
711
722
|
}
|
723
|
+
locateActiveAddon(packageName) {
|
724
|
+
if (packageName === this.options.modulePrefix) {
|
725
|
+
// the app itself is something that addon's can classically resolve if they know it's name.
|
726
|
+
return {
|
727
|
+
root: this.options.appRoot,
|
728
|
+
canResolveFromFile: (0, path_1.resolve)(this.packageCache.maybeMoved(this.packageCache.get(this.options.appRoot)).root, 'package.json'),
|
729
|
+
};
|
730
|
+
}
|
731
|
+
for (let engine of this.options.engines) {
|
732
|
+
for (let addon of engine.activeAddons) {
|
733
|
+
if (addon.name === packageName) {
|
734
|
+
return addon;
|
735
|
+
}
|
736
|
+
}
|
737
|
+
}
|
738
|
+
}
|
712
739
|
external(label, request, specifier) {
|
713
740
|
if (this.options.amdCompatibility === 'cjs') {
|
714
741
|
let filename = (0, virtual_content_1.virtualExternalCJSModule)(specifier);
|
@@ -741,8 +768,11 @@ class Resolver {
|
|
741
768
|
throw new Error(`Embroider's amdCompatibility option is disabled, but something tried to use it to access "${request.specifier}"`);
|
742
769
|
}
|
743
770
|
}
|
744
|
-
fallbackResolve(request) {
|
771
|
+
async fallbackResolve(request) {
|
745
772
|
var _a, _b, _c;
|
773
|
+
if (request.isVirtual) {
|
774
|
+
throw new Error('Build tool bug detected! Fallback resolve should never see a virtual request. It is expected that the defaultResolve for your bundler has already resolved this request');
|
775
|
+
}
|
746
776
|
if (request.specifier === '@embroider/macros') {
|
747
777
|
// the macros package is always handled directly within babel (not
|
748
778
|
// necessarily as a real resolvable package), so we should not mess with it.
|
@@ -750,8 +780,7 @@ class Resolver {
|
|
750
780
|
// why we need to know about it.
|
751
781
|
return logTransition('fallback early exit', request);
|
752
782
|
}
|
753
|
-
|
754
|
-
if (compatPattern.test(specifier)) {
|
783
|
+
if (compatPattern.test(request.specifier)) {
|
755
784
|
// Some kinds of compat requests get rewritten into other things
|
756
785
|
// deterministically. For example, "#embroider_compat/helpers/whatever"
|
757
786
|
// means only "the-current-engine/helpers/whatever", and if that doesn't
|
@@ -767,39 +796,33 @@ class Resolver {
|
|
767
796
|
// here.
|
768
797
|
return request;
|
769
798
|
}
|
770
|
-
|
771
|
-
if (!((_a = request.meta) === null || _a === void 0 ? void 0 : _a.resolvedWithinPackage)) {
|
772
|
-
throw new Error(`bug: embroider resolver's meta is not propagating`);
|
773
|
-
}
|
774
|
-
fromFile = (0, path_1.resolve)((_b = request.meta) === null || _b === void 0 ? void 0 : _b.resolvedWithinPackage, 'package.json');
|
775
|
-
}
|
776
|
-
let pkg = this.packageCache.ownerOfFile(fromFile);
|
799
|
+
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
777
800
|
if (!pkg) {
|
778
801
|
return logTransition('no identifiable owningPackage', request);
|
779
802
|
}
|
780
|
-
//
|
781
|
-
// to
|
782
|
-
//
|
783
|
-
// isV2Ember()
|
803
|
+
// meta.originalFromFile gets set when we want to try to rehome a request
|
804
|
+
// but then come back to the original location here in the fallback when the
|
805
|
+
// rehomed request fails
|
784
806
|
let movedPkg = this.packageCache.maybeMoved(pkg);
|
785
807
|
if (movedPkg !== pkg) {
|
786
|
-
|
808
|
+
let originalFromFile = (_a = request.meta) === null || _a === void 0 ? void 0 : _a.originalFromFile;
|
809
|
+
if (typeof originalFromFile !== 'string') {
|
787
810
|
throw new Error(`bug: embroider resolver's meta is not propagating`);
|
788
811
|
}
|
789
|
-
|
812
|
+
request = request.rehome(originalFromFile);
|
790
813
|
pkg = movedPkg;
|
791
814
|
}
|
792
815
|
if (!pkg.isV2Ember()) {
|
793
816
|
return logTransition('fallbackResolve: not in an ember package', request);
|
794
817
|
}
|
795
|
-
let packageName = (0, shared_internals_1.packageName)(specifier);
|
818
|
+
let packageName = (0, shared_internals_1.packageName)(request.specifier);
|
796
819
|
if (!packageName) {
|
797
820
|
// this is a relative import
|
798
821
|
let withinEngine = this.engineConfig(pkg.name);
|
799
822
|
if (withinEngine) {
|
800
823
|
// it's a relative import inside an engine (which also means app), which
|
801
824
|
// means we may need to satisfy the request via app tree merging.
|
802
|
-
let appJSMatch = this.searchAppTree(request, withinEngine, (0, shared_internals_2.explicitRelative)(pkg.root, (0, path_1.resolve)((0, path_1.dirname)(fromFile), specifier)));
|
825
|
+
let appJSMatch = await this.searchAppTree(request, withinEngine, (0, shared_internals_2.explicitRelative)(pkg.root, (0, path_1.resolve)((0, path_1.dirname)(request.fromFile), request.specifier)));
|
803
826
|
if (appJSMatch) {
|
804
827
|
return logTransition('fallbackResolve: relative appJsMatch', request, appJSMatch);
|
805
828
|
}
|
@@ -813,40 +836,49 @@ class Resolver {
|
|
813
836
|
}
|
814
837
|
}
|
815
838
|
// auto-upgraded packages can fall back to the set of known active addons
|
816
|
-
if (pkg.meta['auto-upgraded']
|
817
|
-
|
818
|
-
if (
|
819
|
-
|
839
|
+
if (pkg.meta['auto-upgraded']) {
|
840
|
+
let addon = this.locateActiveAddon(packageName);
|
841
|
+
if (addon) {
|
842
|
+
const rehomed = request.rehome(addon.canResolveFromFile);
|
843
|
+
if (rehomed !== request) {
|
844
|
+
return logTransition(`activeAddons`, request, rehomed);
|
845
|
+
}
|
820
846
|
}
|
821
847
|
}
|
822
|
-
let logicalLocation = this.reverseSearchAppTree(pkg, fromFile);
|
848
|
+
let logicalLocation = this.reverseSearchAppTree(pkg, request.fromFile);
|
823
849
|
if (logicalLocation) {
|
824
850
|
// the requesting file is in an addon's appTree. We didn't succeed in
|
825
851
|
// resolving this (non-relative) request from inside the actual addon, so
|
826
852
|
// next try to resolve it from the corresponding logical location in the
|
827
853
|
// app.
|
828
|
-
return logTransition('fallbackResolve: retry from logical home of app-js file', request,
|
854
|
+
return logTransition('fallbackResolve: retry from logical home of app-js file', request,
|
855
|
+
// it might look more precise to rehome into logicalLocation.inAppName
|
856
|
+
// rather than package.json. But that logical location may not actually
|
857
|
+
// exist, and some systems (including node's require.resolve) will be
|
858
|
+
// mad about trying to resolve from notional paths that don't really
|
859
|
+
// exist.
|
860
|
+
request.rehome((0, path_1.resolve)(logicalLocation.owningEngine.root, 'package.json')));
|
829
861
|
}
|
830
862
|
let targetingEngine = this.engineConfig(packageName);
|
831
863
|
if (targetingEngine) {
|
832
|
-
let appJSMatch = this.searchAppTree(request, targetingEngine, specifier.replace(packageName, '.'));
|
864
|
+
let appJSMatch = await this.searchAppTree(request, targetingEngine, request.specifier.replace(packageName, '.'));
|
833
865
|
if (appJSMatch) {
|
834
866
|
return logTransition('fallbackResolve: non-relative appJsMatch', request, appJSMatch);
|
835
867
|
}
|
836
868
|
}
|
837
|
-
if (pkg.meta['auto-upgraded']) {
|
869
|
+
if (pkg.meta['auto-upgraded'] && ((_c = (_b = request.meta) === null || _b === void 0 ? void 0 : _b.runtimeFallback) !== null && _c !== void 0 ? _c : true)) {
|
838
870
|
// auto-upgraded packages can fall back to attempting to find dependencies at
|
839
871
|
// runtime. Native v2 packages can only get this behavior in the
|
840
872
|
// isExplicitlyExternal case above because they need to explicitly ask for
|
841
873
|
// externals.
|
842
|
-
return this.external('v1 catch-all fallback', request, specifier);
|
874
|
+
return this.external('v1 catch-all fallback', request, request.specifier);
|
843
875
|
}
|
844
876
|
else {
|
845
877
|
// native v2 packages don't automatically externalize *everything* the way
|
846
878
|
// auto-upgraded packages do, but they still externalize known and approved
|
847
879
|
// ember virtual packages (like @ember/component)
|
848
880
|
if (shared_internals_1.emberVirtualPackages.has(packageName)) {
|
849
|
-
return this.external('emberVirtualPackages', request, specifier);
|
881
|
+
return this.external('emberVirtualPackages', request, request.specifier);
|
850
882
|
}
|
851
883
|
}
|
852
884
|
// this is falling through with the original specifier which was
|
@@ -873,25 +905,23 @@ class Resolver {
|
|
873
905
|
}
|
874
906
|
}
|
875
907
|
}
|
876
|
-
searchAppTree(request, engine, inEngineSpecifier) {
|
908
|
+
async searchAppTree(request, engine, inEngineSpecifier) {
|
877
909
|
let matched = this.getEntryFromMergeMap(inEngineSpecifier, engine.root);
|
878
910
|
switch (matched === null || matched === void 0 ? void 0 : matched.entry.type) {
|
879
911
|
case undefined:
|
880
912
|
return undefined;
|
881
913
|
case 'app-only':
|
882
|
-
return request
|
883
|
-
.alias(matched.entry['app-js'].localPath)
|
884
|
-
.rehome((0, path_1.resolve)(matched.entry['app-js'].packageRoot, 'package.json'));
|
914
|
+
return request.alias(matched.entry['app-js'].specifier).rehome(matched.entry['app-js'].fromFile);
|
885
915
|
case 'fastboot-only':
|
886
|
-
return request
|
887
|
-
.alias(matched.entry['fastboot-js'].localPath)
|
888
|
-
.rehome((0, path_1.resolve)(matched.entry['fastboot-js'].packageRoot, 'package.json'));
|
916
|
+
return request.alias(matched.entry['fastboot-js'].specifier).rehome(matched.entry['fastboot-js'].fromFile);
|
889
917
|
case 'both':
|
890
|
-
let foundAppJS = this.
|
891
|
-
|
918
|
+
let foundAppJS = await this.resolve(request.alias(matched.entry['app-js'].specifier).rehome(matched.entry['app-js'].fromFile).withMeta({
|
919
|
+
runtimeFallback: false,
|
920
|
+
}));
|
921
|
+
if (foundAppJS.type !== 'found') {
|
892
922
|
throw new Error(`${matched.entry['app-js'].fromPackageName} declared ${inEngineSpecifier} in packageJSON.ember-addon.app-js, but that module does not exist`);
|
893
923
|
}
|
894
|
-
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)(foundAppJS.filename, 'utf8'), {});
|
924
|
+
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)(foundAppJS.filename, 'utf8'), { configFile: false });
|
895
925
|
return request.virtualize((0, virtual_content_1.fastbootSwitch)(matched.matched, (0, path_1.resolve)(engine.root, 'package.json'), names));
|
896
926
|
}
|
897
927
|
}
|