@embroider/core 3.4.20-unstable.aaeb674 → 3.4.20
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 +8 -18
- package/src/app-files.d.ts +5 -3
- package/src/app-files.js +8 -25
- package/src/app-files.js.map +1 -1
- package/src/asset.d.ts +32 -0
- package/src/asset.js +3 -0
- package/src/asset.js.map +1 -0
- package/src/ember-html.d.ts +43 -0
- package/src/ember-html.js +110 -0
- package/src/ember-html.js.map +1 -0
- package/src/index.d.ts +2 -2
- package/src/index.js.map +1 -1
- package/src/measure-concat.js +2 -1
- package/src/measure-concat.js.map +1 -1
- package/src/module-resolver.d.ts +43 -28
- package/src/module-resolver.js +242 -440
- package/src/module-resolver.js.map +1 -1
- package/src/options.d.ts +4 -0
- package/src/options.js +1 -0
- package/src/options.js.map +1 -1
- package/src/portable-babel-config.d.ts +11 -0
- package/src/portable-babel-config.js +132 -0
- package/src/portable-babel-config.js.map +1 -0
- package/src/portable-babel-launcher.d.ts +6 -0
- package/src/portable-babel-launcher.js +75 -0
- package/src/portable-babel-launcher.js.map +1 -0
- package/src/resolver-loader.js +1 -8
- package/src/resolver-loader.js.map +1 -1
- package/src/virtual-content.d.ts +2 -6
- package/src/virtual-content.js +45 -117
- package/src/virtual-content.js.map +1 -1
- package/src/module-resolver-options.d.ts +0 -44
- package/src/module-resolver-options.js +0 -167
- package/src/module-resolver-options.js.map +0 -1
- package/src/node-resolve.d.ts +0 -33
- package/src/node-resolve.js +0 -131
- package/src/node-resolve.js.map +0 -1
- package/src/virtual-entrypoint.d.ts +0 -19
- package/src/virtual-entrypoint.js +0 -289
- package/src/virtual-entrypoint.js.map +0 -1
- package/src/virtual-route-entrypoint.d.ts +0 -15
- package/src/virtual-route-entrypoint.js +0 -101
- package/src/virtual-route-entrypoint.js.map +0 -1
- package/src/virtual-test-support-styles.d.ts +0 -4
- package/src/virtual-test-support-styles.js +0 -64
- package/src/virtual-test-support-styles.js.map +0 -1
- package/src/virtual-test-support.d.ts +0 -4
- package/src/virtual-test-support.js +0 -68
- package/src/virtual-test-support.js.map +0 -1
- package/src/virtual-vendor-styles.d.ts +0 -4
- package/src/virtual-vendor-styles.js +0 -82
- package/src/virtual-vendor-styles.js.map +0 -1
- package/src/virtual-vendor.d.ts +0 -4
- package/src/virtual-vendor.js +0 -72
- package/src/virtual-vendor.js.map +0 -1
- package/types/virtual/index.d.ts +0 -9
- package/types/virtual/index.js +0 -3
package/src/module-resolver.js
CHANGED
@@ -15,61 +15,64 @@ 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
|
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
|
-
const virtual_route_entrypoint_1 = require("./virtual-route-entrypoint");
|
26
23
|
const semver_1 = require("semver");
|
27
24
|
const debug = (0, debug_1.default)('embroider:resolver');
|
28
|
-
// Using a formatter makes this work lazy so nothing happens when we aren't
|
29
|
-
// logging. It is unfortunate that formatters are a globally mutable config and
|
30
|
-
// you can only use single character names, but oh well.
|
31
|
-
debug_1.default.formatters.p = (s) => {
|
32
|
-
let cwd = process.cwd();
|
33
|
-
if (s.startsWith(cwd)) {
|
34
|
-
return s.slice(cwd.length + 1);
|
35
|
-
}
|
36
|
-
return s;
|
37
|
-
};
|
38
25
|
function logTransition(reason, before, after = before) {
|
39
26
|
if (after.isVirtual) {
|
40
|
-
debug(`
|
41
|
-
}
|
42
|
-
else if (after.resolvedTo) {
|
43
|
-
debug(`[%s:resolvedTo] %s because %s\n in %p`, before.debugType, before.specifier, reason, before.fromFile);
|
27
|
+
debug(`virtualized %s in %s because %s`, before.specifier, before.fromFile, reason);
|
44
28
|
}
|
45
29
|
else if (before.specifier !== after.specifier) {
|
46
30
|
if (before.fromFile !== after.fromFile) {
|
47
|
-
debug(`
|
31
|
+
debug(`aliased and rehomed: %s to %s, from %s to %s because %s`, before.specifier, after.specifier, before.fromFile, after.fromFile, reason);
|
48
32
|
}
|
49
33
|
else {
|
50
|
-
debug(`
|
34
|
+
debug(`aliased: %s to %s in %s because`, before.specifier, after.specifier, before.fromFile, reason);
|
51
35
|
}
|
52
36
|
}
|
53
37
|
else if (before.fromFile !== after.fromFile) {
|
54
|
-
debug(`
|
55
|
-
}
|
56
|
-
else if (after.isNotFound) {
|
57
|
-
debug(`[%s:not-found] %s because %s\n in %p`, before.debugType, before.specifier, reason, before.fromFile);
|
38
|
+
debug(`rehomed: %s from %s to %s because`, before.specifier, before.fromFile, after.fromFile, reason);
|
58
39
|
}
|
59
40
|
else {
|
60
|
-
debug(`
|
41
|
+
debug(`unchanged: %s in %s because %s`, before.specifier, before.fromFile, reason);
|
61
42
|
}
|
62
43
|
return after;
|
63
44
|
}
|
64
|
-
|
65
|
-
|
45
|
+
const compatPattern = /#embroider_compat\/(?<type>[^\/]+)\/(?<rest>.*)/;
|
46
|
+
class NodeModuleRequest {
|
47
|
+
constructor(specifier, fromFile, isVirtual, meta) {
|
48
|
+
this.specifier = specifier;
|
49
|
+
this.fromFile = fromFile;
|
50
|
+
this.isVirtual = isVirtual;
|
51
|
+
this.meta = meta;
|
52
|
+
}
|
53
|
+
alias(specifier) {
|
54
|
+
return new NodeModuleRequest(specifier, this.fromFile, false, this.meta);
|
55
|
+
}
|
56
|
+
rehome(fromFile) {
|
57
|
+
if (this.fromFile === fromFile) {
|
58
|
+
return this;
|
59
|
+
}
|
60
|
+
else {
|
61
|
+
return new NodeModuleRequest(this.specifier, fromFile, false, this.meta);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
virtualize(filename) {
|
65
|
+
return new NodeModuleRequest(filename, this.fromFile, true, this.meta);
|
66
|
+
}
|
67
|
+
withMeta(meta) {
|
68
|
+
return new NodeModuleRequest(this.specifier, this.fromFile, this.isVirtual, meta);
|
69
|
+
}
|
66
70
|
}
|
67
|
-
const compatPattern = /@embroider\/virtual\/(?<type>[^\/]+)\/(?<rest>.*)/;
|
68
71
|
class Resolver {
|
69
72
|
constructor(options) {
|
70
73
|
this.options = options;
|
71
74
|
}
|
72
|
-
|
75
|
+
beforeResolve(request) {
|
73
76
|
if (request.specifier === '@embroider/macros') {
|
74
77
|
// the macros package is always handled directly within babel (not
|
75
78
|
// necessarily as a real resolvable package), so we should not mess with it.
|
@@ -77,19 +80,10 @@ class Resolver {
|
|
77
80
|
// why we need to know about it.
|
78
81
|
return logTransition('early exit', request);
|
79
82
|
}
|
80
|
-
if (request.specifier === 'require') {
|
81
|
-
return this.external('early require', request, request.specifier);
|
82
|
-
}
|
83
83
|
request = this.handleFastbootSwitch(request);
|
84
|
-
request =
|
84
|
+
request = this.handleGlobalsCompat(request);
|
85
85
|
request = this.handleImplicitModules(request);
|
86
|
-
request = this.handleImplicitTestScripts(request);
|
87
|
-
request = this.handleVendorStyles(request);
|
88
|
-
request = this.handleTestSupportStyles(request);
|
89
|
-
request = this.handleEntrypoint(request);
|
90
|
-
request = this.handleRouteEntrypoint(request);
|
91
86
|
request = this.handleRenaming(request);
|
92
|
-
request = this.handleVendor(request);
|
93
87
|
// we expect the specifier to be app relative at this point - must be after handleRenaming
|
94
88
|
request = this.generateFastbootSwitch(request);
|
95
89
|
request = this.preHandleExternal(request);
|
@@ -103,45 +97,95 @@ class Resolver {
|
|
103
97
|
// that calls your build system's normal module resolver, this does both pre-
|
104
98
|
// and post-resolution adjustments as needed to implement our compatibility
|
105
99
|
// rules.
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
let
|
100
|
+
//
|
101
|
+
// Depending on the plugin architecture you're working in, it may be easier to
|
102
|
+
// call beforeResolve and fallbackResolve directly, in which case matching the
|
103
|
+
// details of the recursion to what this method does are your responsibility.
|
104
|
+
async resolve(request, defaultResolve) {
|
105
|
+
let gen = this.internalResolve(request, defaultResolve);
|
106
|
+
let out = gen.next();
|
107
|
+
while (!out.done) {
|
108
|
+
out = gen.next(await out.value);
|
109
|
+
}
|
110
|
+
return out.value;
|
111
|
+
}
|
112
|
+
// synchronous alternative to resolve() above. Because our own internals are
|
113
|
+
// all synchronous, you can use this if your defaultResolve function is
|
114
|
+
// synchronous.
|
115
|
+
resolveSync(request, defaultResolve) {
|
116
|
+
let gen = this.internalResolve(request, defaultResolve);
|
117
|
+
let out = gen.next();
|
118
|
+
while (!out.done) {
|
119
|
+
out = gen.next(out.value);
|
120
|
+
}
|
121
|
+
return out.value;
|
122
|
+
}
|
123
|
+
// Our core implementation is a generator so it can power both resolve() and
|
124
|
+
// resolveSync()
|
125
|
+
*internalResolve(request, defaultResolve) {
|
126
|
+
request = this.beforeResolve(request);
|
127
|
+
let resolution = yield defaultResolve(request);
|
112
128
|
switch (resolution.type) {
|
113
129
|
case 'found':
|
114
|
-
case 'ignored':
|
115
130
|
return resolution;
|
116
131
|
case 'not_found':
|
117
132
|
break;
|
118
133
|
default:
|
119
134
|
throw (0, assert_never_1.default)(resolution);
|
120
135
|
}
|
121
|
-
let nextRequest =
|
136
|
+
let nextRequest = this.fallbackResolve(request);
|
122
137
|
if (nextRequest === request) {
|
123
138
|
// no additional fallback is available.
|
124
139
|
return resolution;
|
125
140
|
}
|
126
|
-
if (nextRequest.resolvedTo) {
|
127
|
-
return nextRequest.resolvedTo;
|
128
|
-
}
|
129
141
|
if (nextRequest.fromFile === request.fromFile && nextRequest.specifier === request.specifier) {
|
130
142
|
throw new Error('Bug Discovered! New request is not === original request but has the same fromFile and specifier. This will likely create a loop.');
|
131
143
|
}
|
132
|
-
if (nextRequest.isVirtual
|
133
|
-
// virtual
|
134
|
-
//
|
135
|
-
//
|
136
|
-
return
|
144
|
+
if (nextRequest.isVirtual) {
|
145
|
+
// virtual requests are terminal, there is no more beforeResolve or
|
146
|
+
// fallbackResolve around them. The defaultResolve is expected to know how
|
147
|
+
// to implement them.
|
148
|
+
return yield defaultResolve(nextRequest);
|
137
149
|
}
|
138
|
-
return this.
|
150
|
+
return yield* this.internalResolve(nextRequest, defaultResolve);
|
139
151
|
}
|
140
152
|
// Use standard NodeJS resolving, with our required compatibility rules on
|
141
153
|
// top. This is a convenience method for calling resolveSync with the
|
142
154
|
// defaultResolve already configured to be "do the normal node thing".
|
143
|
-
|
144
|
-
|
155
|
+
nodeResolve(specifier, fromFile) {
|
156
|
+
let resolution = this.resolveSync(new NodeModuleRequest(specifier, fromFile, false, undefined), request => {
|
157
|
+
if (request.isVirtual) {
|
158
|
+
return {
|
159
|
+
type: 'found',
|
160
|
+
result: {
|
161
|
+
type: 'virtual',
|
162
|
+
content: (0, virtual_content_1.virtualContent)(request.specifier, this),
|
163
|
+
filename: request.specifier,
|
164
|
+
},
|
165
|
+
};
|
166
|
+
}
|
167
|
+
try {
|
168
|
+
let filename = resolve_1.default.sync(request.specifier, {
|
169
|
+
basedir: (0, path_1.dirname)(request.fromFile),
|
170
|
+
extensions: this.options.resolvableExtensions,
|
171
|
+
});
|
172
|
+
return { type: 'found', result: { type: 'real', filename } };
|
173
|
+
}
|
174
|
+
catch (err) {
|
175
|
+
if (err.code !== 'MODULE_NOT_FOUND') {
|
176
|
+
throw err;
|
177
|
+
}
|
178
|
+
return { type: 'not_found', err };
|
179
|
+
}
|
180
|
+
});
|
181
|
+
switch (resolution.type) {
|
182
|
+
case 'not_found':
|
183
|
+
return resolution;
|
184
|
+
case 'found':
|
185
|
+
return resolution.result;
|
186
|
+
default:
|
187
|
+
throw (0, assert_never_1.default)(resolution);
|
188
|
+
}
|
145
189
|
}
|
146
190
|
get packageCache() {
|
147
191
|
return shared_internals_2.RewrittenPackageCache.shared('embroider', this.options.appRoot);
|
@@ -158,9 +202,6 @@ class Resolver {
|
|
158
202
|
return owningPackage;
|
159
203
|
}
|
160
204
|
generateFastbootSwitch(request) {
|
161
|
-
if (isTerminal(request)) {
|
162
|
-
return request;
|
163
|
-
}
|
164
205
|
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
165
206
|
if (!pkg) {
|
166
207
|
return request;
|
@@ -178,9 +219,7 @@ class Resolver {
|
|
178
219
|
let fastbootFile = engineConfig.fastbootFiles[candidate];
|
179
220
|
if (fastbootFile) {
|
180
221
|
if (fastbootFile.shadowedFilename) {
|
181
|
-
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)((0, path_1.resolve)(pkg.root, fastbootFile.shadowedFilename), 'utf8'), {
|
182
|
-
configFile: false,
|
183
|
-
});
|
222
|
+
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)((0, path_1.resolve)(pkg.root, fastbootFile.shadowedFilename), 'utf8'), {});
|
184
223
|
let switchFile = (0, virtual_content_1.fastbootSwitch)(candidate, (0, path_1.resolve)(pkg.root, 'package.json'), names);
|
185
224
|
if (switchFile === request.fromFile) {
|
186
225
|
return logTransition('internal lookup from fastbootSwitch', request);
|
@@ -199,9 +238,6 @@ class Resolver {
|
|
199
238
|
}
|
200
239
|
handleFastbootSwitch(request) {
|
201
240
|
var _a;
|
202
|
-
if (isTerminal(request)) {
|
203
|
-
return request;
|
204
|
-
}
|
205
241
|
let match = (0, virtual_content_1.decodeFastbootSwitch)(request.fromFile);
|
206
242
|
if (!match) {
|
207
243
|
return request;
|
@@ -240,15 +276,12 @@ class Resolver {
|
|
240
276
|
}
|
241
277
|
let entry = (_a = this.getEntryFromMergeMap(rel, pkg.root)) === null || _a === void 0 ? void 0 : _a.entry;
|
242
278
|
if ((entry === null || entry === void 0 ? void 0 : entry.type) === 'both') {
|
243
|
-
return logTransition('matched addon entry', request, request.alias(entry[section].
|
279
|
+
return logTransition('matched addon entry', request, request.alias(entry[section].localPath).rehome((0, path_1.resolve)(entry[section].packageRoot, 'package.json')));
|
244
280
|
}
|
245
281
|
}
|
246
282
|
return logTransition('failed to match in fastboot switch', request);
|
247
283
|
}
|
248
284
|
handleImplicitModules(request) {
|
249
|
-
if (isTerminal(request)) {
|
250
|
-
return request;
|
251
|
-
}
|
252
285
|
let im = (0, virtual_content_1.decodeImplicitModules)(request.specifier);
|
253
286
|
if (!im) {
|
254
287
|
return request;
|
@@ -266,97 +299,7 @@ class Resolver {
|
|
266
299
|
return logTransition(`own implicit modules`, request, request.virtualize((0, path_1.resolve)(pkg.root, `-embroider-${im.type}.js`)));
|
267
300
|
}
|
268
301
|
}
|
269
|
-
|
270
|
-
var _a;
|
271
|
-
if (isTerminal(request)) {
|
272
|
-
return request;
|
273
|
-
}
|
274
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
275
|
-
const candidates = [
|
276
|
-
'@embroider/virtual/compat-modules',
|
277
|
-
'/@embroider/virtual/compat-modules',
|
278
|
-
'./@embroider/virtual/compat-modules',
|
279
|
-
];
|
280
|
-
if (!candidates.some(c => request.specifier.startsWith(c + '/') || request.specifier === c)) {
|
281
|
-
return request;
|
282
|
-
}
|
283
|
-
const result = /\.?\/?@embroider\/virtual\/compat-modules(?:\/(?<packageName>.*))?/.exec(request.specifier);
|
284
|
-
if (!result) {
|
285
|
-
// TODO make a better error
|
286
|
-
throw new Error('entrypoint does not match pattern' + request.specifier);
|
287
|
-
}
|
288
|
-
const { packageName } = result.groups;
|
289
|
-
const requestingPkg = this.packageCache.ownerOfFile(request.fromFile);
|
290
|
-
if (!(requestingPkg === null || requestingPkg === void 0 ? void 0 : requestingPkg.isV2Ember())) {
|
291
|
-
throw new Error(`bug: found entrypoint import in non-ember package at ${request.fromFile}`);
|
292
|
-
}
|
293
|
-
let pkg;
|
294
|
-
if (packageName) {
|
295
|
-
pkg = this.packageCache.resolve(packageName, requestingPkg);
|
296
|
-
}
|
297
|
-
else {
|
298
|
-
pkg = requestingPkg;
|
299
|
-
}
|
300
|
-
let matched = (0, resolve_exports_1.exports)(pkg.packageJSON, '-embroider-entrypoint.js', {
|
301
|
-
browser: true,
|
302
|
-
conditions: ['default', 'imports'],
|
303
|
-
});
|
304
|
-
return logTransition('entrypoint', request, request.virtualize((0, path_1.resolve)(pkg.root, (_a = matched === null || matched === void 0 ? void 0 : matched[0]) !== null && _a !== void 0 ? _a : '-embroider-entrypoint.js')));
|
305
|
-
}
|
306
|
-
handleRouteEntrypoint(request) {
|
307
|
-
if (isTerminal(request)) {
|
308
|
-
return request;
|
309
|
-
}
|
310
|
-
let routeName = (0, virtual_route_entrypoint_1.decodePublicRouteEntrypoint)(request.specifier);
|
311
|
-
if (!routeName) {
|
312
|
-
return request;
|
313
|
-
}
|
314
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
315
|
-
if (!(pkg === null || pkg === void 0 ? void 0 : pkg.isV2Ember())) {
|
316
|
-
throw new Error(`bug: found entrypoint import in non-ember package at ${request.fromFile}`);
|
317
|
-
}
|
318
|
-
let matched = (0, resolve_exports_1.exports)(pkg.packageJSON, '-embroider-route-entrypoint.js', {
|
319
|
-
browser: true,
|
320
|
-
conditions: ['default', 'imports'],
|
321
|
-
});
|
322
|
-
return logTransition('route entrypoint', request, request.virtualize((0, virtual_route_entrypoint_1.encodeRouteEntrypoint)(pkg.root, matched === null || matched === void 0 ? void 0 : matched[0], routeName)));
|
323
|
-
}
|
324
|
-
handleImplicitTestScripts(request) {
|
325
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
326
|
-
const candidates = [
|
327
|
-
'@embroider/virtual/test-support.js',
|
328
|
-
'/@embroider/virtual/test-support.js',
|
329
|
-
'./@embroider/virtual/test-support.js',
|
330
|
-
];
|
331
|
-
if (!candidates.includes(request.specifier)) {
|
332
|
-
return request;
|
333
|
-
}
|
334
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
335
|
-
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) !== this.options.engines[0].root) {
|
336
|
-
throw new Error(`bug: found an import of ${request.specifier} in ${request.fromFile}, but this is not the top-level Ember app. The top-level Ember app is the only one that has support for @embroider/virtual/test-support.js. If you think something should be fixed in Embroider, please open an issue on https://github.com/embroider-build/embroider/issues.`);
|
337
|
-
}
|
338
|
-
return logTransition('test-support', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-test-support.js')));
|
339
|
-
}
|
340
|
-
handleTestSupportStyles(request) {
|
341
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
342
|
-
const candidates = [
|
343
|
-
'@embroider/virtual/test-support.css',
|
344
|
-
'/@embroider/virtual/test-support.css',
|
345
|
-
'./@embroider/virtual/test-support.css',
|
346
|
-
];
|
347
|
-
if (!candidates.includes(request.specifier)) {
|
348
|
-
return request;
|
349
|
-
}
|
350
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
351
|
-
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) !== this.options.engines[0].root) {
|
352
|
-
throw new Error(`bug: found an import of ${request.specifier} in ${request.fromFile}, but this is not the top-level Ember app. The top-level Ember app is the only one that has support for @embroider/virtual/test-support.css. If you think something should be fixed in Embroider, please open an issue on https://github.com/embroider-build/embroider/issues.`);
|
353
|
-
}
|
354
|
-
return logTransition('test-support-styles', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-test-support-styles.css')));
|
355
|
-
}
|
356
|
-
async handleGlobalsCompat(request) {
|
357
|
-
if (isTerminal(request)) {
|
358
|
-
return request;
|
359
|
-
}
|
302
|
+
handleGlobalsCompat(request) {
|
360
303
|
let match = compatPattern.exec(request.specifier);
|
361
304
|
if (!match) {
|
362
305
|
return request;
|
@@ -377,58 +320,33 @@ class Resolver {
|
|
377
320
|
case 'ambiguous':
|
378
321
|
return this.resolveHelperOrComponent(rest, engine, request);
|
379
322
|
default:
|
380
|
-
throw new Error(`bug: unexepected
|
323
|
+
throw new Error(`bug: unexepected #embroider_compat specifier: ${request.specifier}`);
|
381
324
|
}
|
382
325
|
}
|
383
|
-
handleVendorStyles(request) {
|
384
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
385
|
-
const candidates = [
|
386
|
-
'@embroider/virtual/vendor.css',
|
387
|
-
'/@embroider/virtual/vendor.css',
|
388
|
-
'./@embroider/virtual/vendor.css',
|
389
|
-
];
|
390
|
-
if (!candidates.includes(request.specifier)) {
|
391
|
-
return request;
|
392
|
-
}
|
393
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
394
|
-
if (!pkg || !this.options.engines.some(e => e.root === (pkg === null || pkg === void 0 ? void 0 : pkg.root))) {
|
395
|
-
throw new Error(`bug: found an import of ${request.specifier} in ${request.fromFile}, but this is not the top-level Ember app or Engine. The top-level Ember app is the only one that has support for @embroider/virtual/vendor.css. If you think something should be fixed in Embroider, please open an issue on https://github.com/embroider-build/embroider/issues.`);
|
396
|
-
}
|
397
|
-
return logTransition('vendor-styles', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-vendor-styles.css')));
|
398
|
-
}
|
399
326
|
resolveHelper(path, inEngine, request) {
|
400
327
|
let target = this.parseGlobalPath(path, inEngine);
|
401
328
|
return logTransition('resolveHelper', request, request.alias(`${target.packageName}/helpers/${target.memberName}`).rehome((0, path_1.resolve)(inEngine.root, 'package.json')));
|
402
329
|
}
|
403
|
-
|
330
|
+
resolveComponent(path, inEngine, request) {
|
404
331
|
let target = this.parseGlobalPath(path, inEngine);
|
405
332
|
let hbsModule = null;
|
406
333
|
let jsModule = null;
|
407
334
|
// first, the various places our template might be.
|
408
335
|
for (let candidate of this.componentTemplateCandidates(target.packageName)) {
|
409
|
-
let
|
410
|
-
|
411
|
-
|
412
|
-
}));
|
413
|
-
if (resolution.type === 'found') {
|
414
|
-
hbsModule = resolution;
|
336
|
+
let resolution = this.nodeResolve(`${target.packageName}${candidate.prefix}${target.memberName}${candidate.suffix}`, target.from);
|
337
|
+
if (resolution.type === 'real') {
|
338
|
+
hbsModule = resolution.filename;
|
415
339
|
break;
|
416
340
|
}
|
417
341
|
}
|
418
342
|
// then the various places our javascript might be.
|
419
343
|
for (let candidate of this.componentJSCandidates(target.packageName)) {
|
420
|
-
let
|
421
|
-
let resolution = await this.resolve(request.alias(candidateSpecifier).rehome(target.from).withMeta({
|
422
|
-
runtimeFallback: false,
|
423
|
-
}));
|
424
|
-
if (resolution.type === 'ignored') {
|
425
|
-
return logTransition(`resolving to ignored component`, request, request.resolveTo(resolution));
|
426
|
-
}
|
344
|
+
let resolution = this.nodeResolve(`${target.packageName}${candidate.prefix}${target.memberName}${candidate.suffix}`, target.from);
|
427
345
|
// .hbs is a resolvable extension for us, so we need to exclude it here.
|
428
346
|
// It matches as a priority lower than .js, so finding an .hbs means
|
429
347
|
// there's definitely not a .js.
|
430
|
-
if (resolution.type === '
|
431
|
-
jsModule = resolution;
|
348
|
+
if (resolution.type === 'real' && !resolution.filename.endsWith('.hbs')) {
|
349
|
+
jsModule = resolution.filename;
|
432
350
|
break;
|
433
351
|
}
|
434
352
|
}
|
@@ -436,33 +354,28 @@ class Resolver {
|
|
436
354
|
if (!this.emberVersionSupportsSeparateTemplates) {
|
437
355
|
throw new Error(`Components with separately resolved templates were removed at Ember 6.0. Migrate to either co-located js/ts + hbs files or to gjs/gts. https://deprecations.emberjs.com/id/component-template-resolving/. Bad template was: ${hbsModule}.`);
|
438
356
|
}
|
439
|
-
return logTransition(`resolveComponent found legacy HBS`, request, request.virtualize((0, virtual_content_1.virtualPairComponent)(hbsModule
|
357
|
+
return logTransition(`resolveComponent found legacy HBS`, request, request.virtualize((0, virtual_content_1.virtualPairComponent)(hbsModule, jsModule)));
|
440
358
|
}
|
441
359
|
else if (jsModule) {
|
442
|
-
return logTransition(`
|
360
|
+
return logTransition(`resolveComponent found only JS`, request, request.alias(jsModule).rehome(target.from));
|
443
361
|
}
|
444
362
|
else {
|
445
363
|
return logTransition(`resolveComponent failed`, request);
|
446
364
|
}
|
447
365
|
}
|
448
|
-
|
366
|
+
resolveHelperOrComponent(path, inEngine, request) {
|
449
367
|
// resolveHelper just rewrites our request to one that should target the
|
450
368
|
// component, so here to resolve the ambiguity we need to actually resolve
|
451
369
|
// that candidate to see if it works.
|
452
370
|
let helperCandidate = this.resolveHelper(path, inEngine, request);
|
453
|
-
let helperMatch =
|
454
|
-
|
455
|
-
|
456
|
-
// for the case of 'ignored' that means that esbuild found this helper in an external
|
457
|
-
// package so it should be considered found in this case and we should not look for a
|
458
|
-
// component with this name
|
459
|
-
if (helperMatch.type === 'found' || helperMatch.type === 'ignored') {
|
460
|
-
return logTransition('resolve to ambiguous case matched a helper', request, request.resolveTo(helperMatch));
|
371
|
+
let helperMatch = this.nodeResolve(helperCandidate.specifier, helperCandidate.fromFile);
|
372
|
+
if (helperMatch.type === 'real') {
|
373
|
+
return logTransition('ambiguous case matched a helper', request, helperCandidate);
|
461
374
|
}
|
462
375
|
// unlike resolveHelper, resolveComponent already does pre-resolution in
|
463
376
|
// order to deal with its own internal ambiguity around JS vs HBS vs
|
464
377
|
// colocation.≥
|
465
|
-
let componentMatch =
|
378
|
+
let componentMatch = this.resolveComponent(path, inEngine, request);
|
466
379
|
if (componentMatch !== request) {
|
467
380
|
return logTransition('ambiguous case matched a cmoponent', request, componentMatch);
|
468
381
|
}
|
@@ -487,7 +400,6 @@ class Resolver {
|
|
487
400
|
}
|
488
401
|
*componentJSCandidates(inPackageName) {
|
489
402
|
yield { prefix: '/components/', suffix: '' };
|
490
|
-
yield { prefix: '/components/', suffix: '/index' };
|
491
403
|
yield { prefix: '/components/', suffix: '/component' };
|
492
404
|
let pods = this.podPrefix(inPackageName);
|
493
405
|
if (pods) {
|
@@ -506,10 +418,10 @@ class Resolver {
|
|
506
418
|
parseGlobalPath(path, inEngine) {
|
507
419
|
let parts = path.split('@');
|
508
420
|
if (parts.length > 1 && parts[0].length > 0) {
|
509
|
-
return { packageName: parts[0], memberName: parts[1], from: (0, path_1.resolve)(inEngine.root, '
|
421
|
+
return { packageName: parts[0], memberName: parts[1], from: (0, path_1.resolve)(inEngine.root, 'pacakge.json') };
|
510
422
|
}
|
511
423
|
else {
|
512
|
-
return { packageName: inEngine.packageName, memberName: path, from: (0, path_1.resolve)(inEngine.root, '
|
424
|
+
return { packageName: inEngine.packageName, memberName: path, from: (0, path_1.resolve)(inEngine.root, 'pacakge.json') };
|
513
425
|
}
|
514
426
|
}
|
515
427
|
engineConfig(packageName) {
|
@@ -535,18 +447,14 @@ class Resolver {
|
|
535
447
|
if (!inAddonName.startsWith('./')) {
|
536
448
|
throw new Error(`addon ${addon.name} declares app-js in its package.json with the illegal name "${inAddonName}". It must start with "./" to make it clear that it's relative to the addon`);
|
537
449
|
}
|
538
|
-
let specifier = (0, reverse_exports_1.externalName)(addon.packageJSON, inAddonName);
|
539
|
-
if (!specifier) {
|
540
|
-
throw new Error(`${addon.name}'s package.json app-js refers to ${inAddonName}, but that module is not accessible from outside the package`);
|
541
|
-
}
|
542
450
|
let prevEntry = engineModules.get(inEngineName);
|
543
451
|
switch (prevEntry === null || prevEntry === void 0 ? void 0 : prevEntry.type) {
|
544
452
|
case undefined:
|
545
453
|
engineModules.set(inEngineName, {
|
546
454
|
type: 'app-only',
|
547
455
|
'app-js': {
|
548
|
-
|
549
|
-
|
456
|
+
localPath: inAddonName,
|
457
|
+
packageRoot: addon.root,
|
550
458
|
fromPackageName: addon.name,
|
551
459
|
},
|
552
460
|
});
|
@@ -559,8 +467,8 @@ class Resolver {
|
|
559
467
|
engineModules.set(inEngineName, {
|
560
468
|
type: 'both',
|
561
469
|
'app-js': {
|
562
|
-
|
563
|
-
|
470
|
+
localPath: inAddonName,
|
471
|
+
packageRoot: addon.root,
|
564
472
|
fromPackageName: addon.name,
|
565
473
|
},
|
566
474
|
'fastboot-js': prevEntry['fastboot-js'],
|
@@ -578,18 +486,14 @@ class Resolver {
|
|
578
486
|
if (!inAddonName.startsWith('./')) {
|
579
487
|
throw new Error(`addon ${addon.name} declares fastboot-js in its package.json with the illegal name "${inAddonName}". It must start with "./" to make it clear that it's relative to the addon`);
|
580
488
|
}
|
581
|
-
let specifier = (0, reverse_exports_1.externalName)(addon.packageJSON, inAddonName);
|
582
|
-
if (!specifier) {
|
583
|
-
throw new Error(`${addon.name}'s package.json fastboot-js refers to ${inAddonName}, but that module is not accessible from outside the package`);
|
584
|
-
}
|
585
489
|
let prevEntry = engineModules.get(inEngineName);
|
586
490
|
switch (prevEntry === null || prevEntry === void 0 ? void 0 : prevEntry.type) {
|
587
491
|
case undefined:
|
588
492
|
engineModules.set(inEngineName, {
|
589
493
|
type: 'fastboot-only',
|
590
494
|
'fastboot-js': {
|
591
|
-
|
592
|
-
|
495
|
+
localPath: inAddonName,
|
496
|
+
packageRoot: addon.root,
|
593
497
|
fromPackageName: addon.name,
|
594
498
|
},
|
595
499
|
});
|
@@ -602,8 +506,8 @@ class Resolver {
|
|
602
506
|
engineModules.set(inEngineName, {
|
603
507
|
type: 'both',
|
604
508
|
'fastboot-js': {
|
605
|
-
|
606
|
-
|
509
|
+
localPath: inAddonName,
|
510
|
+
packageRoot: addon.root,
|
607
511
|
fromPackageName: addon.name,
|
608
512
|
},
|
609
513
|
'app-js': prevEntry['app-js'],
|
@@ -634,7 +538,7 @@ class Resolver {
|
|
634
538
|
});
|
635
539
|
}
|
636
540
|
handleRewrittenPackages(request) {
|
637
|
-
if (
|
541
|
+
if (request.isVirtual) {
|
638
542
|
return request;
|
639
543
|
}
|
640
544
|
let requestingPkg = this.packageCache.ownerOfFile(request.fromFile);
|
@@ -653,6 +557,10 @@ class Resolver {
|
|
653
557
|
targetPkg = this.packageCache.resolve(packageName, requestingPkg);
|
654
558
|
}
|
655
559
|
catch (err) {
|
560
|
+
// this is not the place to report resolution failures. If the thing
|
561
|
+
// doesn't resolve, we're just not interested in redirecting it for
|
562
|
+
// backward-compat, that's all. The rest of the system will take care of
|
563
|
+
// reporting a failure to resolve (or handling it a different way)
|
656
564
|
if (err.code !== 'MODULE_NOT_FOUND') {
|
657
565
|
throw err;
|
658
566
|
}
|
@@ -668,26 +576,14 @@ class Resolver {
|
|
668
576
|
return logTransition('request targets a moved package', request, this.resolveWithinMovedPackage(request, targetPkg));
|
669
577
|
}
|
670
578
|
else if (originalRequestingPkg !== requestingPkg) {
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
return logTransition('outbound request from moved package', request, request
|
675
|
-
// setting meta here because if this fails, we want the fallback
|
676
|
-
// logic to revert our rehome and continue from the *moved* package.
|
677
|
-
.withMeta({ originalFromFile: request.fromFile })
|
678
|
-
.rehome((0, path_1.resolve)(originalRequestingPkg.root, 'package.json')));
|
679
|
-
}
|
680
|
-
else {
|
681
|
-
// requesting package was moved and we failed to find its target. We
|
682
|
-
// can't let that accidentally succeed in the defaultResolve because we
|
683
|
-
// could escape the moved package system.
|
684
|
-
return logTransition('missing outbound request from moved package', request, request.notFound());
|
685
|
-
}
|
579
|
+
// in this case, the requesting package is moved but its destination is
|
580
|
+
// not, so we need to rehome the request back to the original location.
|
581
|
+
return logTransition('outbound request from moved package', request, request.withMeta({ wasMovedTo: request.fromFile }).rehome((0, path_1.resolve)(originalRequestingPkg.root, 'package.json')));
|
686
582
|
}
|
687
583
|
return request;
|
688
584
|
}
|
689
585
|
handleRenaming(request) {
|
690
|
-
if (
|
586
|
+
if (request.isVirtual) {
|
691
587
|
return request;
|
692
588
|
}
|
693
589
|
let packageName = (0, shared_internals_1.packageName)(request.specifier);
|
@@ -695,11 +591,14 @@ class Resolver {
|
|
695
591
|
return request;
|
696
592
|
}
|
697
593
|
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
594
|
+
if (!pkg || !pkg.isV2Ember()) {
|
595
|
+
return request;
|
596
|
+
}
|
698
597
|
// real deps take precedence over renaming rules. That is, a package like
|
699
598
|
// ember-source might provide backburner via module renaming, but if you
|
700
599
|
// have an explicit dependency on backburner you should still get that real
|
701
600
|
// copy.
|
702
|
-
if (!
|
601
|
+
if (!pkg.hasDependency(packageName)) {
|
703
602
|
for (let [candidate, replacement] of Object.entries(this.options.renameModules)) {
|
704
603
|
if (candidate === request.specifier) {
|
705
604
|
return logTransition(`renameModules`, request, request.alias(replacement));
|
@@ -717,79 +616,30 @@ class Resolver {
|
|
717
616
|
return logTransition(`renamePackages`, request, request.alias(request.specifier.replace(packageName, this.options.renamePackages[packageName])));
|
718
617
|
}
|
719
618
|
}
|
720
|
-
if (
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
//
|
725
|
-
|
726
|
-
// auto-upgraded packages always get automatically adjusted. They never
|
727
|
-
// supported fancy package.json exports features so this direct mapping
|
728
|
-
// to the root is always right.
|
729
|
-
// "my-app/foo" -> "./foo" from app's package.json
|
730
|
-
// "my-addon/foo" -> "my-addon/foo" from a package that's guaranteed to be able to resolve my-addon
|
731
|
-
let owningEngine = this.owningEngine(pkg);
|
732
|
-
let addonConfig = owningEngine.activeAddons.find(a => a.root === pkg.root);
|
733
|
-
if (addonConfig) {
|
734
|
-
// auto-upgraded addons get special support for self-resolving here.
|
735
|
-
return logTransition(`v1 addon self-import`, request, request.rehome(addonConfig.canResolveFromFile));
|
736
|
-
}
|
737
|
-
else {
|
738
|
-
// auto-upgraded apps will necessarily have packageJSON.exports
|
739
|
-
// because we insert them, so for that support we can fall through to
|
740
|
-
// that support below.
|
741
|
-
}
|
742
|
-
}
|
743
|
-
// v2 packages are supposed to use package.json `exports` to enable
|
744
|
-
// self-imports, but not all build tools actually follow the spec. This
|
745
|
-
// is a workaround for badly behaved packagers.
|
746
|
-
//
|
747
|
-
// Known upstream bugs this works around:
|
748
|
-
// - https://github.com/vitejs/vite/issues/9731
|
749
|
-
if (pkg.packageJSON.exports) {
|
750
|
-
let found = (0, resolve_exports_1.exports)(pkg.packageJSON, request.specifier, {
|
751
|
-
browser: true,
|
752
|
-
conditions: ['default', 'imports'],
|
753
|
-
});
|
754
|
-
if (found === null || found === void 0 ? void 0 : found[0]) {
|
755
|
-
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')));
|
756
|
-
}
|
757
|
-
}
|
619
|
+
if (pkg.meta['auto-upgraded'] && pkg.name === packageName) {
|
620
|
+
// we found a self-import, resolve it for them. Only auto-upgraded
|
621
|
+
// packages get this help, v2 packages are natively supposed to make their
|
622
|
+
// own modules resolvable, and we want to push them all to do that
|
623
|
+
// correctly.
|
624
|
+
return logTransition(`v1 self-import`, request, request.alias(request.specifier.replace(pkg.name, '.')).rehome((0, path_1.resolve)(pkg.root, 'package.json')));
|
758
625
|
}
|
759
626
|
return request;
|
760
627
|
}
|
761
|
-
handleVendor(request) {
|
762
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
763
|
-
const candidates = [
|
764
|
-
'@embroider/virtual/vendor.js',
|
765
|
-
'/@embroider/virtual/vendor.js',
|
766
|
-
'./@embroider/virtual/vendor.js',
|
767
|
-
];
|
768
|
-
if (!candidates.includes(request.specifier)) {
|
769
|
-
return request;
|
770
|
-
}
|
771
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
772
|
-
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) !== this.options.engines[0].root) {
|
773
|
-
throw new Error(`bug: found an import of ${request.specifier} in ${request.fromFile}, but this is not the top-level Ember app. The top-level Ember app is the only one that has support for @embroider/virtual/vendor.js. If you think something should be fixed in Embroider, please open an issue on https://github.com/embroider-build/embroider/issues.`);
|
774
|
-
}
|
775
|
-
return logTransition('vendor', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-vendor.js')));
|
776
|
-
}
|
777
628
|
resolveWithinMovedPackage(request, pkg) {
|
778
629
|
let levels = ['..'];
|
779
630
|
if (pkg.name.startsWith('@')) {
|
780
631
|
levels.push('..');
|
781
632
|
}
|
782
|
-
let originalFromFile = request.fromFile;
|
783
633
|
let newRequest = request.rehome((0, path_1.resolve)(pkg.root, ...levels, 'moved-package-target.js'));
|
784
634
|
if (newRequest === request) {
|
785
635
|
return request;
|
786
636
|
}
|
787
|
-
|
788
|
-
|
789
|
-
|
637
|
+
return newRequest.withMeta({
|
638
|
+
resolvedWithinPackage: pkg.root,
|
639
|
+
});
|
790
640
|
}
|
791
641
|
preHandleExternal(request) {
|
792
|
-
if (
|
642
|
+
if (request.isVirtual) {
|
793
643
|
return request;
|
794
644
|
}
|
795
645
|
let { specifier, fromFile } = request;
|
@@ -819,10 +669,10 @@ class Resolver {
|
|
819
669
|
}
|
820
670
|
// if the requesting file is in an addon's app-js, the relative request
|
821
671
|
// should really be understood as a request for a module in the containing
|
822
|
-
// engine
|
672
|
+
// engine
|
823
673
|
let logicalLocation = this.reverseSearchAppTree(pkg, request.fromFile);
|
824
674
|
if (logicalLocation) {
|
825
|
-
return logTransition('beforeResolve: relative import in app-js', request, request.
|
675
|
+
return logTransition('beforeResolve: relative import in app-js', request, request.rehome((0, path_1.resolve)(logicalLocation.owningEngine.root, logicalLocation.inAppName)));
|
826
676
|
}
|
827
677
|
return request;
|
828
678
|
}
|
@@ -837,11 +687,11 @@ class Resolver {
|
|
837
687
|
if (shared_internals_1.emberVirtualPeerDeps.has(packageName) && !pkg.hasDependency(packageName)) {
|
838
688
|
// addons (whether auto-upgraded or not) may use the app's
|
839
689
|
// emberVirtualPeerDeps, like "@glimmer/component" etc.
|
840
|
-
|
841
|
-
|
842
|
-
throw new Error(`${pkg.name} is trying to import the emberVirtualPeerDep "${packageName}", but it seems to be missing`);
|
690
|
+
if (!this.options.activeAddons[packageName]) {
|
691
|
+
throw new Error(`${pkg.name} is trying to import the app's ${packageName} package, but it seems to be missing`);
|
843
692
|
}
|
844
|
-
|
693
|
+
let newHome = (0, path_1.resolve)(this.packageCache.maybeMoved(this.packageCache.get(this.options.appRoot)).root, 'package.json');
|
694
|
+
return logTransition(`emberVirtualPeerDeps in v2 addon`, request, request.rehome(newHome));
|
845
695
|
}
|
846
696
|
// if this file is part of an addon's app-js, it's really the logical
|
847
697
|
// package to which it belongs (normally the app) that affects some policy
|
@@ -850,7 +700,7 @@ class Resolver {
|
|
850
700
|
if (logicalPackage.meta['auto-upgraded'] && !logicalPackage.hasDependency('ember-auto-import')) {
|
851
701
|
try {
|
852
702
|
let dep = this.packageCache.resolve(packageName, logicalPackage);
|
853
|
-
if (!dep.
|
703
|
+
if (!dep.isEmberPackage()) {
|
854
704
|
// classic ember addons can only import non-ember dependencies if they
|
855
705
|
// have ember-auto-import.
|
856
706
|
return this.external('v1 package without auto-import', request, specifier);
|
@@ -863,28 +713,14 @@ class Resolver {
|
|
863
713
|
}
|
864
714
|
}
|
865
715
|
// assertions on what native v2 addons can import
|
866
|
-
if (!pkg.
|
867
|
-
!
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
return request;
|
872
|
-
}
|
873
|
-
locateActiveAddon(packageName) {
|
874
|
-
if (packageName === this.options.modulePrefix) {
|
875
|
-
// the app itself is something that addon's can classically resolve if they know it's name.
|
876
|
-
return {
|
877
|
-
root: this.options.appRoot,
|
878
|
-
canResolveFromFile: (0, path_1.resolve)(this.packageCache.maybeMoved(this.packageCache.get(this.options.appRoot)).root, 'package.json'),
|
879
|
-
};
|
880
|
-
}
|
881
|
-
for (let engine of this.options.engines) {
|
882
|
-
for (let addon of engine.activeAddons) {
|
883
|
-
if (addon.name === packageName) {
|
884
|
-
return addon;
|
885
|
-
}
|
716
|
+
if (!pkg.meta['auto-upgraded']) {
|
717
|
+
if (!pkg.meta['auto-upgraded'] &&
|
718
|
+
!appImportInAppTree(pkg, logicalPackage, packageName) &&
|
719
|
+
!reliablyResolvable(pkg, packageName)) {
|
720
|
+
throw new Error(`${pkg.name} is trying to import from ${packageName} but that is not one of its explicit dependencies`);
|
886
721
|
}
|
887
722
|
}
|
723
|
+
return request;
|
888
724
|
}
|
889
725
|
external(label, request, specifier) {
|
890
726
|
if (this.options.amdCompatibility === 'cjs') {
|
@@ -897,7 +733,7 @@ class Resolver {
|
|
897
733
|
entry = ['require', ['default', 'has']];
|
898
734
|
}
|
899
735
|
if (!entry) {
|
900
|
-
throw new Error(`
|
736
|
+
throw new Error(`A module tried to resolve "${request.specifier}" and didn't find it (${label}).
|
901
737
|
|
902
738
|
- Maybe a dependency declaration is missing?
|
903
739
|
- Remember that v1 addons can only import non-Ember-addon NPM dependencies if they include ember-auto-import in their dependencies.
|
@@ -918,11 +754,8 @@ class Resolver {
|
|
918
754
|
throw new Error(`Embroider's amdCompatibility option is disabled, but something tried to use it to access "${request.specifier}"`);
|
919
755
|
}
|
920
756
|
}
|
921
|
-
|
922
|
-
var _a, _b;
|
923
|
-
if (request.isVirtual) {
|
924
|
-
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');
|
925
|
-
}
|
757
|
+
fallbackResolve(request) {
|
758
|
+
var _a, _b, _c;
|
926
759
|
if (request.specifier === '@embroider/macros') {
|
927
760
|
// the macros package is always handled directly within babel (not
|
928
761
|
// necessarily as a real resolvable package), so we should not mess with it.
|
@@ -930,140 +763,109 @@ class Resolver {
|
|
930
763
|
// why we need to know about it.
|
931
764
|
return logTransition('fallback early exit', request);
|
932
765
|
}
|
933
|
-
|
766
|
+
let { specifier, fromFile } = request;
|
767
|
+
if (compatPattern.test(specifier)) {
|
934
768
|
// Some kinds of compat requests get rewritten into other things
|
935
|
-
// deterministically. For example, "
|
769
|
+
// deterministically. For example, "#embroider_compat/helpers/whatever"
|
936
770
|
// means only "the-current-engine/helpers/whatever", and if that doesn't
|
937
771
|
// actually exist it's that path that will show up as a missing import.
|
938
772
|
//
|
939
773
|
// But others have an ambiguous meaning. For example,
|
940
|
-
//
|
774
|
+
// #embroider_compat/components/whatever can mean several different
|
941
775
|
// things. If we're unable to find any of them, the actual
|
942
|
-
// "
|
776
|
+
// "#embroider_compat" request will fall through all the way to here.
|
943
777
|
//
|
944
778
|
// In that case, we don't want to externalize that failure. We know it's
|
945
779
|
// not a classic runtime thing. It's better to let it be a build error
|
946
780
|
// here.
|
947
781
|
return request;
|
948
782
|
}
|
949
|
-
|
950
|
-
|
951
|
-
|
783
|
+
if (fromFile.endsWith('moved-package-target.js')) {
|
784
|
+
if (!((_a = request.meta) === null || _a === void 0 ? void 0 : _a.resolvedWithinPackage)) {
|
785
|
+
throw new Error(`bug: embroider resolver's meta is not propagating`);
|
786
|
+
}
|
787
|
+
fromFile = (0, path_1.resolve)((_b = request.meta) === null || _b === void 0 ? void 0 : _b.resolvedWithinPackage, 'package.json');
|
952
788
|
}
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
if (
|
964
|
-
|
789
|
+
let pkg = this.packageCache.ownerOfFile(fromFile);
|
790
|
+
if (!pkg) {
|
791
|
+
return logTransition('no identifiable owningPackage', request);
|
792
|
+
}
|
793
|
+
// if we rehomed this request to its un-rewritten location in order to try
|
794
|
+
// to do the defaultResolve from there, now we refer back to the rewritten
|
795
|
+
// location because that's what we want to use when asking things like
|
796
|
+
// isV2Ember()
|
797
|
+
let movedPkg = this.packageCache.maybeMoved(pkg);
|
798
|
+
if (movedPkg !== pkg) {
|
799
|
+
if (!((_c = request.meta) === null || _c === void 0 ? void 0 : _c.wasMovedTo)) {
|
800
|
+
throw new Error(`bug: embroider resolver's meta is not propagating`);
|
965
801
|
}
|
966
|
-
|
802
|
+
fromFile = request.meta.wasMovedTo;
|
803
|
+
pkg = movedPkg;
|
967
804
|
}
|
968
|
-
|
805
|
+
if (!pkg.isV2Ember()) {
|
806
|
+
return logTransition('fallbackResolve: not in an ember package', request);
|
807
|
+
}
|
808
|
+
let packageName = (0, shared_internals_1.packageName)(specifier);
|
969
809
|
if (!packageName) {
|
970
810
|
// this is a relative import
|
971
|
-
|
811
|
+
let withinEngine = this.engineConfig(pkg.name);
|
812
|
+
if (withinEngine) {
|
813
|
+
// it's a relative import inside an engine (which also means app), which
|
814
|
+
// means we may need to satisfy the request via app tree merging.
|
815
|
+
let appJSMatch = this.searchAppTree(request, withinEngine, (0, shared_internals_2.explicitRelative)(pkg.root, (0, path_1.resolve)((0, path_1.dirname)(fromFile), specifier)));
|
816
|
+
if (appJSMatch) {
|
817
|
+
return logTransition('fallbackResolve: relative appJsMatch', request, appJSMatch);
|
818
|
+
}
|
819
|
+
else {
|
820
|
+
return logTransition('fallbackResolve: relative appJs search failure', request);
|
821
|
+
}
|
822
|
+
}
|
823
|
+
else {
|
824
|
+
// nothing else to do for relative imports
|
825
|
+
return logTransition('fallbackResolve: relative failure', request);
|
826
|
+
}
|
972
827
|
}
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
828
|
+
// auto-upgraded packages can fall back to the set of known active addons
|
829
|
+
if (pkg.meta['auto-upgraded'] && this.options.activeAddons[packageName]) {
|
830
|
+
const rehomed = this.resolveWithinMovedPackage(request, this.packageCache.get(this.options.activeAddons[packageName]));
|
831
|
+
if (rehomed !== request) {
|
832
|
+
return logTransition(`activeAddons`, request, rehomed);
|
977
833
|
}
|
978
834
|
}
|
979
|
-
let logicalLocation = this.reverseSearchAppTree(pkg,
|
835
|
+
let logicalLocation = this.reverseSearchAppTree(pkg, fromFile);
|
980
836
|
if (logicalLocation) {
|
981
837
|
// the requesting file is in an addon's appTree. We didn't succeed in
|
982
838
|
// resolving this (non-relative) request from inside the actual addon, so
|
983
839
|
// next try to resolve it from the corresponding logical location in the
|
984
840
|
// app.
|
985
|
-
return logTransition('fallbackResolve: retry from logical home of app-js file', request,
|
986
|
-
// it might look more precise to rehome into logicalLocation.inAppName
|
987
|
-
// rather than package.json. But that logical location may not actually
|
988
|
-
// exist, and some systems (including node's require.resolve) will be
|
989
|
-
// mad about trying to resolve from notional paths that don't really
|
990
|
-
// exist.
|
991
|
-
request.rehome((0, path_1.resolve)(logicalLocation.owningEngine.root, 'package.json')));
|
841
|
+
return logTransition('fallbackResolve: retry from logical home of app-js file', request, request.rehome((0, path_1.resolve)(logicalLocation.owningEngine.root, logicalLocation.inAppName)));
|
992
842
|
}
|
993
843
|
let targetingEngine = this.engineConfig(packageName);
|
994
844
|
if (targetingEngine) {
|
995
|
-
let appJSMatch =
|
845
|
+
let appJSMatch = this.searchAppTree(request, targetingEngine, specifier.replace(packageName, '.'));
|
996
846
|
if (appJSMatch) {
|
997
847
|
return logTransition('fallbackResolve: non-relative appJsMatch', request, appJSMatch);
|
998
848
|
}
|
999
849
|
}
|
1000
|
-
if (pkg.
|
850
|
+
if (pkg.meta['auto-upgraded']) {
|
1001
851
|
// auto-upgraded packages can fall back to attempting to find dependencies at
|
1002
852
|
// runtime. Native v2 packages can only get this behavior in the
|
1003
853
|
// isExplicitlyExternal case above because they need to explicitly ask for
|
1004
854
|
// externals.
|
1005
|
-
return this.external('v1 catch-all fallback', request,
|
855
|
+
return this.external('v1 catch-all fallback', request, specifier);
|
1006
856
|
}
|
1007
857
|
else {
|
1008
858
|
// native v2 packages don't automatically externalize *everything* the way
|
1009
859
|
// auto-upgraded packages do, but they still externalize known and approved
|
1010
860
|
// ember virtual packages (like @ember/component)
|
1011
861
|
if (shared_internals_1.emberVirtualPackages.has(packageName)) {
|
1012
|
-
return this.external('emberVirtualPackages', request,
|
862
|
+
return this.external('emberVirtualPackages', request, specifier);
|
1013
863
|
}
|
1014
864
|
}
|
1015
865
|
// this is falling through with the original specifier which was
|
1016
866
|
// non-resolvable, which will presumably cause a static build error in stage3.
|
1017
867
|
return logTransition('fallbackResolve final exit', request);
|
1018
868
|
}
|
1019
|
-
restoreRehomedRequest(pkg, request) {
|
1020
|
-
var _a;
|
1021
|
-
// meta.originalFromFile gets set when we want to try to rehome a request
|
1022
|
-
// but then come back to the original location here in the fallback when the
|
1023
|
-
// rehomed request fails
|
1024
|
-
let movedPkg = this.packageCache.maybeMoved(pkg);
|
1025
|
-
if (movedPkg !== pkg) {
|
1026
|
-
let originalFromFile = (_a = request.meta) === null || _a === void 0 ? void 0 : _a.originalFromFile;
|
1027
|
-
if (typeof originalFromFile !== 'string') {
|
1028
|
-
throw new Error(`bug: embroider resolver's meta is not propagating`);
|
1029
|
-
}
|
1030
|
-
request = request.rehome(originalFromFile);
|
1031
|
-
pkg = movedPkg;
|
1032
|
-
}
|
1033
|
-
return { pkg, request };
|
1034
|
-
}
|
1035
|
-
async relativeFallbackResolve(pkg, request) {
|
1036
|
-
let withinEngine = this.engineConfig(pkg.name);
|
1037
|
-
if (withinEngine) {
|
1038
|
-
// it's a relative import inside an engine (which also means app), which
|
1039
|
-
// means we may need to satisfy the request via app tree merging.
|
1040
|
-
let logicalName = engineRelativeName(pkg, (0, path_1.resolve)((0, path_1.dirname)(request.fromFile), request.specifier));
|
1041
|
-
if (!logicalName) {
|
1042
|
-
return logTransition('fallbackResolve: relative failure because this file is not externally accessible', request);
|
1043
|
-
}
|
1044
|
-
let appJSMatch = await this.searchAppTree(request, withinEngine, logicalName);
|
1045
|
-
if (appJSMatch) {
|
1046
|
-
return logTransition('fallbackResolve: relative appJsMatch', request, appJSMatch);
|
1047
|
-
}
|
1048
|
-
else {
|
1049
|
-
return logTransition('fallbackResolve: relative appJs search failure', request);
|
1050
|
-
}
|
1051
|
-
}
|
1052
|
-
else {
|
1053
|
-
// nothing else to do for relative imports
|
1054
|
-
return logTransition('fallbackResolve: relative failure', request);
|
1055
|
-
}
|
1056
|
-
}
|
1057
|
-
maybeFallbackToActiveAddon(request, requestedPackageName) {
|
1058
|
-
// auto-upgraded packages can fall back to the set of known active addons
|
1059
|
-
let addon = this.locateActiveAddon(requestedPackageName);
|
1060
|
-
if (addon) {
|
1061
|
-
const rehomed = request.rehome(addon.canResolveFromFile);
|
1062
|
-
if (rehomed !== request) {
|
1063
|
-
return logTransition(`activeAddons`, request, rehomed);
|
1064
|
-
}
|
1065
|
-
}
|
1066
|
-
}
|
1067
869
|
getEntryFromMergeMap(inEngineSpecifier, root) {
|
1068
870
|
var _a;
|
1069
871
|
let entry;
|
@@ -1084,23 +886,25 @@ class Resolver {
|
|
1084
886
|
}
|
1085
887
|
}
|
1086
888
|
}
|
1087
|
-
|
889
|
+
searchAppTree(request, engine, inEngineSpecifier) {
|
1088
890
|
let matched = this.getEntryFromMergeMap(inEngineSpecifier, engine.root);
|
1089
891
|
switch (matched === null || matched === void 0 ? void 0 : matched.entry.type) {
|
1090
892
|
case undefined:
|
1091
893
|
return undefined;
|
1092
894
|
case 'app-only':
|
1093
|
-
return request
|
895
|
+
return request
|
896
|
+
.alias(matched.entry['app-js'].localPath)
|
897
|
+
.rehome((0, path_1.resolve)(matched.entry['app-js'].packageRoot, 'package.json'));
|
1094
898
|
case 'fastboot-only':
|
1095
|
-
return request
|
899
|
+
return request
|
900
|
+
.alias(matched.entry['fastboot-js'].localPath)
|
901
|
+
.rehome((0, path_1.resolve)(matched.entry['fastboot-js'].packageRoot, 'package.json'));
|
1096
902
|
case 'both':
|
1097
|
-
let foundAppJS =
|
1098
|
-
|
1099
|
-
}));
|
1100
|
-
if (foundAppJS.type !== 'found') {
|
903
|
+
let foundAppJS = this.nodeResolve(matched.entry['app-js'].localPath, (0, path_1.resolve)(matched.entry['app-js'].packageRoot, 'package.json'));
|
904
|
+
if (foundAppJS.type !== 'real') {
|
1101
905
|
throw new Error(`${matched.entry['app-js'].fromPackageName} declared ${inEngineSpecifier} in packageJSON.ember-addon.app-js, but that module does not exist`);
|
1102
906
|
}
|
1103
|
-
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)(foundAppJS.filename, 'utf8'), {
|
907
|
+
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)(foundAppJS.filename, 'utf8'), {});
|
1104
908
|
return request.virtualize((0, virtual_content_1.fastbootSwitch)(matched.matched, (0, path_1.resolve)(engine.root, 'package.json'), names));
|
1105
909
|
}
|
1106
910
|
}
|
@@ -1135,10 +939,14 @@ class Resolver {
|
|
1135
939
|
if (engineConfig) {
|
1136
940
|
// we're directly inside an engine, so we're potentially resolvable as a
|
1137
941
|
// global component
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
942
|
+
// this kind of mapping is not true in general for all packages, but it
|
943
|
+
// *is* true for all classical engines (which includes apps) since they
|
944
|
+
// don't support package.json `exports`. As for a future v2 engine or app:
|
945
|
+
// this whole method is only relevant for implementing packageRules, which
|
946
|
+
// should only be for classic stuff. v2 packages should do the right
|
947
|
+
// things from the beginning and not need packageRules about themselves.
|
948
|
+
let inAppName = (0, shared_internals_2.explicitRelative)(engineConfig.root, filename);
|
949
|
+
return this.tryReverseComponent(engineConfig.packageName, inAppName);
|
1142
950
|
}
|
1143
951
|
let engineInfo = this.reverseSearchAppTree(owningPackage, filename);
|
1144
952
|
if (engineInfo) {
|
@@ -1189,10 +997,4 @@ function reliablyResolvable(pkg, packageName) {
|
|
1189
997
|
function appImportInAppTree(inPackage, inLogicalPackage, importedPackageName) {
|
1190
998
|
return inPackage !== inLogicalPackage && importedPackageName === inLogicalPackage.name;
|
1191
999
|
}
|
1192
|
-
function engineRelativeName(pkg, filename) {
|
1193
|
-
let outsideName = (0, reverse_exports_1.externalName)(pkg.packageJSON, (0, shared_internals_2.explicitRelative)(pkg.root, filename));
|
1194
|
-
if (outsideName) {
|
1195
|
-
return '.' + outsideName.slice(pkg.name.length);
|
1196
|
-
}
|
1197
|
-
}
|
1198
1000
|
//# sourceMappingURL=module-resolver.js.map
|