@embroider/core 3.4.6-unstable.f30e685 → 3.4.7

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