@embroider/core 3.4.20-unstable.b89b741 → 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 +9 -19
- 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 +3 -3
- package/src/index.js +3 -3
- 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 +60 -17
- package/src/module-resolver.js +307 -432
- package/src/module-resolver.js.map +1 -1
- package/src/options.d.ts +7 -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/to-broccoli-plugin.d.ts +8 -0
- package/src/to-broccoli-plugin.js +30 -0
- package/src/to-broccoli-plugin.js.map +1 -0
- package/src/virtual-content.d.ts +4 -6
- package/src/virtual-content.js +99 -67
- package/src/virtual-content.js.map +1 -1
- package/src/module-request.d.ts +0 -45
- package/src/module-request.js +0 -91
- package/src/module-request.js.map +0 -1
- package/src/module-resolver-options.d.ts +0 -42
- package/src/module-resolver-options.js +0 -164
- package/src/module-resolver-options.js.map +0 -1
- package/src/node-resolve.d.ts +0 -29
- package/src/node-resolve.js +0 -114
- 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 -94
- 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 -57
- 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,52 +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
|
-
if (after.
|
40
|
-
debug(`
|
26
|
+
if (after.isVirtual) {
|
27
|
+
debug(`virtualized %s in %s because %s`, before.specifier, before.fromFile, reason);
|
41
28
|
}
|
42
29
|
else if (before.specifier !== after.specifier) {
|
43
30
|
if (before.fromFile !== after.fromFile) {
|
44
|
-
debug(`
|
31
|
+
debug(`aliased and rehomed: %s to %s, from %s to %s because %s`, before.specifier, after.specifier, before.fromFile, after.fromFile, reason);
|
45
32
|
}
|
46
33
|
else {
|
47
|
-
debug(`
|
34
|
+
debug(`aliased: %s to %s in %s because`, before.specifier, after.specifier, before.fromFile, reason);
|
48
35
|
}
|
49
36
|
}
|
50
37
|
else if (before.fromFile !== after.fromFile) {
|
51
|
-
debug(`
|
38
|
+
debug(`rehomed: %s from %s to %s because`, before.specifier, before.fromFile, after.fromFile, reason);
|
52
39
|
}
|
53
40
|
else {
|
54
|
-
debug(`
|
41
|
+
debug(`unchanged: %s in %s because %s`, before.specifier, before.fromFile, reason);
|
55
42
|
}
|
56
43
|
return after;
|
57
44
|
}
|
58
|
-
const compatPattern =
|
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
|
+
}
|
70
|
+
}
|
59
71
|
class Resolver {
|
60
72
|
constructor(options) {
|
61
73
|
this.options = options;
|
62
74
|
}
|
63
|
-
|
75
|
+
beforeResolve(request) {
|
64
76
|
if (request.specifier === '@embroider/macros') {
|
65
77
|
// the macros package is always handled directly within babel (not
|
66
78
|
// necessarily as a real resolvable package), so we should not mess with it.
|
@@ -69,15 +81,9 @@ class Resolver {
|
|
69
81
|
return logTransition('early exit', request);
|
70
82
|
}
|
71
83
|
request = this.handleFastbootSwitch(request);
|
72
|
-
request =
|
84
|
+
request = this.handleGlobalsCompat(request);
|
73
85
|
request = this.handleImplicitModules(request);
|
74
|
-
request = this.handleImplicitTestScripts(request);
|
75
|
-
request = this.handleVendorStyles(request);
|
76
|
-
request = this.handleTestSupportStyles(request);
|
77
|
-
request = this.handleEntrypoint(request);
|
78
|
-
request = this.handleRouteEntrypoint(request);
|
79
86
|
request = this.handleRenaming(request);
|
80
|
-
request = this.handleVendor(request);
|
81
87
|
// we expect the specifier to be app relative at this point - must be after handleRenaming
|
82
88
|
request = this.generateFastbootSwitch(request);
|
83
89
|
request = this.preHandleExternal(request);
|
@@ -91,53 +97,95 @@ class Resolver {
|
|
91
97
|
// that calls your build system's normal module resolver, this does both pre-
|
92
98
|
// and post-resolution adjustments as needed to implement our compatibility
|
93
99
|
// rules.
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
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);
|
108
128
|
switch (resolution.type) {
|
109
129
|
case 'found':
|
110
|
-
case 'ignored':
|
111
130
|
return resolution;
|
112
131
|
case 'not_found':
|
113
132
|
break;
|
114
133
|
default:
|
115
134
|
throw (0, assert_never_1.default)(resolution);
|
116
135
|
}
|
117
|
-
|
118
|
-
let nextRequest = await this.fallbackResolve(request);
|
136
|
+
let nextRequest = this.fallbackResolve(request);
|
119
137
|
if (nextRequest === request) {
|
120
138
|
// no additional fallback is available.
|
121
139
|
return resolution;
|
122
140
|
}
|
123
|
-
if (nextRequest.resolvedTo) {
|
124
|
-
if (typeof nextRequest.resolvedTo === 'function') {
|
125
|
-
return await nextRequest.resolvedTo();
|
126
|
-
}
|
127
|
-
else {
|
128
|
-
return nextRequest.resolvedTo;
|
129
|
-
}
|
130
|
-
}
|
131
141
|
if (nextRequest.fromFile === request.fromFile && nextRequest.specifier === request.specifier) {
|
132
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.');
|
133
143
|
}
|
134
|
-
|
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);
|
149
|
+
}
|
150
|
+
return yield* this.internalResolve(nextRequest, defaultResolve);
|
135
151
|
}
|
136
152
|
// Use standard NodeJS resolving, with our required compatibility rules on
|
137
153
|
// top. This is a convenience method for calling resolveSync with the
|
138
154
|
// defaultResolve already configured to be "do the normal node thing".
|
139
|
-
|
140
|
-
|
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
|
+
}
|
141
189
|
}
|
142
190
|
get packageCache() {
|
143
191
|
return shared_internals_2.RewrittenPackageCache.shared('embroider', this.options.appRoot);
|
@@ -154,9 +202,6 @@ class Resolver {
|
|
154
202
|
return owningPackage;
|
155
203
|
}
|
156
204
|
generateFastbootSwitch(request) {
|
157
|
-
if (request.resolvedTo) {
|
158
|
-
return request;
|
159
|
-
}
|
160
205
|
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
161
206
|
if (!pkg) {
|
162
207
|
return request;
|
@@ -174,9 +219,7 @@ class Resolver {
|
|
174
219
|
let fastbootFile = engineConfig.fastbootFiles[candidate];
|
175
220
|
if (fastbootFile) {
|
176
221
|
if (fastbootFile.shadowedFilename) {
|
177
|
-
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)((0, path_1.resolve)(pkg.root, fastbootFile.shadowedFilename), 'utf8'), {
|
178
|
-
configFile: false,
|
179
|
-
});
|
222
|
+
let { names } = (0, describe_exports_1.describeExports)((0, fs_1.readFileSync)((0, path_1.resolve)(pkg.root, fastbootFile.shadowedFilename), 'utf8'), {});
|
180
223
|
let switchFile = (0, virtual_content_1.fastbootSwitch)(candidate, (0, path_1.resolve)(pkg.root, 'package.json'), names);
|
181
224
|
if (switchFile === request.fromFile) {
|
182
225
|
return logTransition('internal lookup from fastbootSwitch', request);
|
@@ -195,9 +238,6 @@ class Resolver {
|
|
195
238
|
}
|
196
239
|
handleFastbootSwitch(request) {
|
197
240
|
var _a;
|
198
|
-
if (request.resolvedTo) {
|
199
|
-
return request;
|
200
|
-
}
|
201
241
|
let match = (0, virtual_content_1.decodeFastbootSwitch)(request.fromFile);
|
202
242
|
if (!match) {
|
203
243
|
return request;
|
@@ -236,15 +276,12 @@ class Resolver {
|
|
236
276
|
}
|
237
277
|
let entry = (_a = this.getEntryFromMergeMap(rel, pkg.root)) === null || _a === void 0 ? void 0 : _a.entry;
|
238
278
|
if ((entry === null || entry === void 0 ? void 0 : entry.type) === 'both') {
|
239
|
-
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')));
|
240
280
|
}
|
241
281
|
}
|
242
282
|
return logTransition('failed to match in fastboot switch', request);
|
243
283
|
}
|
244
284
|
handleImplicitModules(request) {
|
245
|
-
if (request.resolvedTo) {
|
246
|
-
return request;
|
247
|
-
}
|
248
285
|
let im = (0, virtual_content_1.decodeImplicitModules)(request.specifier);
|
249
286
|
if (!im) {
|
250
287
|
return request;
|
@@ -262,97 +299,7 @@ class Resolver {
|
|
262
299
|
return logTransition(`own implicit modules`, request, request.virtualize((0, path_1.resolve)(pkg.root, `-embroider-${im.type}.js`)));
|
263
300
|
}
|
264
301
|
}
|
265
|
-
|
266
|
-
var _a;
|
267
|
-
if (request.resolvedTo) {
|
268
|
-
return request;
|
269
|
-
}
|
270
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
271
|
-
const candidates = [
|
272
|
-
'@embroider/virtual/compat-modules',
|
273
|
-
'/@embroider/virtual/compat-modules',
|
274
|
-
'./@embroider/virtual/compat-modules',
|
275
|
-
];
|
276
|
-
if (!candidates.some(c => request.specifier.startsWith(c + '/') || request.specifier === c)) {
|
277
|
-
return request;
|
278
|
-
}
|
279
|
-
const result = /\.?\/?@embroider\/virtual\/compat-modules(?:\/(?<packageName>.*))?/.exec(request.specifier);
|
280
|
-
if (!result) {
|
281
|
-
// TODO make a better error
|
282
|
-
throw new Error('entrypoint does not match pattern' + request.specifier);
|
283
|
-
}
|
284
|
-
const { packageName } = result.groups;
|
285
|
-
const requestingPkg = this.packageCache.ownerOfFile(request.fromFile);
|
286
|
-
if (!(requestingPkg === null || requestingPkg === void 0 ? void 0 : requestingPkg.isV2Ember())) {
|
287
|
-
throw new Error(`bug: found entrypoint import in non-ember package at ${request.fromFile}`);
|
288
|
-
}
|
289
|
-
let pkg;
|
290
|
-
if (packageName) {
|
291
|
-
pkg = this.packageCache.resolve(packageName, requestingPkg);
|
292
|
-
}
|
293
|
-
else {
|
294
|
-
pkg = requestingPkg;
|
295
|
-
}
|
296
|
-
let matched = (0, resolve_exports_1.exports)(pkg.packageJSON, '-embroider-entrypoint.js', {
|
297
|
-
browser: true,
|
298
|
-
conditions: ['default', 'imports'],
|
299
|
-
});
|
300
|
-
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')));
|
301
|
-
}
|
302
|
-
handleRouteEntrypoint(request) {
|
303
|
-
if (request.resolvedTo) {
|
304
|
-
return request;
|
305
|
-
}
|
306
|
-
let routeName = (0, virtual_route_entrypoint_1.decodePublicRouteEntrypoint)(request.specifier);
|
307
|
-
if (!routeName) {
|
308
|
-
return request;
|
309
|
-
}
|
310
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
311
|
-
if (!(pkg === null || pkg === void 0 ? void 0 : pkg.isV2Ember())) {
|
312
|
-
throw new Error(`bug: found entrypoint import in non-ember package at ${request.fromFile}`);
|
313
|
-
}
|
314
|
-
let matched = (0, resolve_exports_1.exports)(pkg.packageJSON, '-embroider-route-entrypoint.js', {
|
315
|
-
browser: true,
|
316
|
-
conditions: ['default', 'imports'],
|
317
|
-
});
|
318
|
-
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)));
|
319
|
-
}
|
320
|
-
handleImplicitTestScripts(request) {
|
321
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
322
|
-
const candidates = [
|
323
|
-
'@embroider/virtual/test-support.js',
|
324
|
-
'/@embroider/virtual/test-support.js',
|
325
|
-
'./@embroider/virtual/test-support.js',
|
326
|
-
];
|
327
|
-
if (!candidates.includes(request.specifier)) {
|
328
|
-
return request;
|
329
|
-
}
|
330
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
331
|
-
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) !== this.options.engines[0].root) {
|
332
|
-
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.`);
|
333
|
-
}
|
334
|
-
return logTransition('test-support', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-test-support.js')));
|
335
|
-
}
|
336
|
-
handleTestSupportStyles(request) {
|
337
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
338
|
-
const candidates = [
|
339
|
-
'@embroider/virtual/test-support.css',
|
340
|
-
'/@embroider/virtual/test-support.css',
|
341
|
-
'./@embroider/virtual/test-support.css',
|
342
|
-
];
|
343
|
-
if (!candidates.includes(request.specifier)) {
|
344
|
-
return request;
|
345
|
-
}
|
346
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
347
|
-
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) !== this.options.engines[0].root) {
|
348
|
-
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.`);
|
349
|
-
}
|
350
|
-
return logTransition('test-support-styles', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-test-support-styles.css')));
|
351
|
-
}
|
352
|
-
async handleGlobalsCompat(request) {
|
353
|
-
if (request.resolvedTo) {
|
354
|
-
return request;
|
355
|
-
}
|
302
|
+
handleGlobalsCompat(request) {
|
356
303
|
let match = compatPattern.exec(request.specifier);
|
357
304
|
if (!match) {
|
358
305
|
return request;
|
@@ -373,92 +320,62 @@ class Resolver {
|
|
373
320
|
case 'ambiguous':
|
374
321
|
return this.resolveHelperOrComponent(rest, engine, request);
|
375
322
|
default:
|
376
|
-
throw new Error(`bug: unexepected
|
377
|
-
}
|
378
|
-
}
|
379
|
-
handleVendorStyles(request) {
|
380
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
381
|
-
const candidates = [
|
382
|
-
'@embroider/virtual/vendor.css',
|
383
|
-
'/@embroider/virtual/vendor.css',
|
384
|
-
'./@embroider/virtual/vendor.css',
|
385
|
-
];
|
386
|
-
if (!candidates.includes(request.specifier)) {
|
387
|
-
return request;
|
323
|
+
throw new Error(`bug: unexepected #embroider_compat specifier: ${request.specifier}`);
|
388
324
|
}
|
389
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
390
|
-
if (!pkg || !this.options.engines.some(e => e.root === (pkg === null || pkg === void 0 ? void 0 : pkg.root))) {
|
391
|
-
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.`);
|
392
|
-
}
|
393
|
-
return logTransition('vendor-styles', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-vendor-styles.css')));
|
394
325
|
}
|
395
326
|
resolveHelper(path, inEngine, request) {
|
396
327
|
let target = this.parseGlobalPath(path, inEngine);
|
397
328
|
return logTransition('resolveHelper', request, request.alias(`${target.packageName}/helpers/${target.memberName}`).rehome((0, path_1.resolve)(inEngine.root, 'package.json')));
|
398
329
|
}
|
399
|
-
|
330
|
+
resolveComponent(path, inEngine, request) {
|
400
331
|
let target = this.parseGlobalPath(path, inEngine);
|
401
332
|
let hbsModule = null;
|
402
333
|
let jsModule = null;
|
403
334
|
// first, the various places our template might be.
|
404
335
|
for (let candidate of this.componentTemplateCandidates(target.packageName)) {
|
405
|
-
let
|
406
|
-
|
407
|
-
|
408
|
-
}));
|
409
|
-
if (resolution.type === 'found') {
|
410
|
-
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;
|
411
339
|
break;
|
412
340
|
}
|
413
341
|
}
|
414
342
|
// then the various places our javascript might be.
|
415
343
|
for (let candidate of this.componentJSCandidates(target.packageName)) {
|
416
|
-
let
|
417
|
-
let resolution = await this.resolve(request.alias(candidateSpecifier).rehome(target.from).withMeta({
|
418
|
-
runtimeFallback: false,
|
419
|
-
}));
|
420
|
-
if (resolution.type === 'ignored') {
|
421
|
-
return logTransition(`resolving to ignored component`, request, request.resolveTo(resolution));
|
422
|
-
}
|
344
|
+
let resolution = this.nodeResolve(`${target.packageName}${candidate.prefix}${target.memberName}${candidate.suffix}`, target.from);
|
423
345
|
// .hbs is a resolvable extension for us, so we need to exclude it here.
|
424
346
|
// It matches as a priority lower than .js, so finding an .hbs means
|
425
347
|
// there's definitely not a .js.
|
426
|
-
if (resolution.type === '
|
427
|
-
jsModule = resolution;
|
348
|
+
if (resolution.type === 'real' && !resolution.filename.endsWith('.hbs')) {
|
349
|
+
jsModule = resolution.filename;
|
428
350
|
break;
|
429
351
|
}
|
430
352
|
}
|
431
353
|
if (hbsModule) {
|
432
354
|
if (!this.emberVersionSupportsSeparateTemplates) {
|
433
|
-
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
|
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}.`);
|
434
356
|
}
|
435
|
-
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)));
|
436
358
|
}
|
437
359
|
else if (jsModule) {
|
438
|
-
return logTransition(`
|
360
|
+
return logTransition(`resolveComponent found only JS`, request, request.alias(jsModule).rehome(target.from));
|
439
361
|
}
|
440
362
|
else {
|
441
363
|
return logTransition(`resolveComponent failed`, request);
|
442
364
|
}
|
443
365
|
}
|
444
|
-
|
366
|
+
resolveHelperOrComponent(path, inEngine, request) {
|
445
367
|
// resolveHelper just rewrites our request to one that should target the
|
446
368
|
// component, so here to resolve the ambiguity we need to actually resolve
|
447
369
|
// that candidate to see if it works.
|
448
370
|
let helperCandidate = this.resolveHelper(path, inEngine, request);
|
449
|
-
let helperMatch =
|
450
|
-
|
451
|
-
|
452
|
-
// for the case of 'ignored' that means that esbuild found this helper in an external
|
453
|
-
// package so it should be considered found in this case and we should not look for a
|
454
|
-
// component with this name
|
455
|
-
if (helperMatch.type === 'found' || helperMatch.type === 'ignored') {
|
456
|
-
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);
|
457
374
|
}
|
458
375
|
// unlike resolveHelper, resolveComponent already does pre-resolution in
|
459
376
|
// order to deal with its own internal ambiguity around JS vs HBS vs
|
460
377
|
// colocation.≥
|
461
|
-
let componentMatch =
|
378
|
+
let componentMatch = this.resolveComponent(path, inEngine, request);
|
462
379
|
if (componentMatch !== request) {
|
463
380
|
return logTransition('ambiguous case matched a cmoponent', request, componentMatch);
|
464
381
|
}
|
@@ -483,7 +400,6 @@ class Resolver {
|
|
483
400
|
}
|
484
401
|
*componentJSCandidates(inPackageName) {
|
485
402
|
yield { prefix: '/components/', suffix: '' };
|
486
|
-
yield { prefix: '/components/', suffix: '/index' };
|
487
403
|
yield { prefix: '/components/', suffix: '/component' };
|
488
404
|
let pods = this.podPrefix(inPackageName);
|
489
405
|
if (pods) {
|
@@ -502,10 +418,10 @@ class Resolver {
|
|
502
418
|
parseGlobalPath(path, inEngine) {
|
503
419
|
let parts = path.split('@');
|
504
420
|
if (parts.length > 1 && parts[0].length > 0) {
|
505
|
-
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') };
|
506
422
|
}
|
507
423
|
else {
|
508
|
-
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') };
|
509
425
|
}
|
510
426
|
}
|
511
427
|
engineConfig(packageName) {
|
@@ -531,18 +447,14 @@ class Resolver {
|
|
531
447
|
if (!inAddonName.startsWith('./')) {
|
532
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`);
|
533
449
|
}
|
534
|
-
let specifier = (0, reverse_exports_1.externalName)(addon.packageJSON, inAddonName);
|
535
|
-
if (!specifier) {
|
536
|
-
throw new Error(`${addon.name}'s package.json app-js refers to ${inAddonName}, but that module is not accessible from outside the package`);
|
537
|
-
}
|
538
450
|
let prevEntry = engineModules.get(inEngineName);
|
539
451
|
switch (prevEntry === null || prevEntry === void 0 ? void 0 : prevEntry.type) {
|
540
452
|
case undefined:
|
541
453
|
engineModules.set(inEngineName, {
|
542
454
|
type: 'app-only',
|
543
455
|
'app-js': {
|
544
|
-
|
545
|
-
|
456
|
+
localPath: inAddonName,
|
457
|
+
packageRoot: addon.root,
|
546
458
|
fromPackageName: addon.name,
|
547
459
|
},
|
548
460
|
});
|
@@ -555,8 +467,8 @@ class Resolver {
|
|
555
467
|
engineModules.set(inEngineName, {
|
556
468
|
type: 'both',
|
557
469
|
'app-js': {
|
558
|
-
|
559
|
-
|
470
|
+
localPath: inAddonName,
|
471
|
+
packageRoot: addon.root,
|
560
472
|
fromPackageName: addon.name,
|
561
473
|
},
|
562
474
|
'fastboot-js': prevEntry['fastboot-js'],
|
@@ -574,18 +486,14 @@ class Resolver {
|
|
574
486
|
if (!inAddonName.startsWith('./')) {
|
575
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`);
|
576
488
|
}
|
577
|
-
let specifier = (0, reverse_exports_1.externalName)(addon.packageJSON, inAddonName);
|
578
|
-
if (!specifier) {
|
579
|
-
throw new Error(`${addon.name}'s package.json fastboot-js refers to ${inAddonName}, but that module is not accessible from outside the package`);
|
580
|
-
}
|
581
489
|
let prevEntry = engineModules.get(inEngineName);
|
582
490
|
switch (prevEntry === null || prevEntry === void 0 ? void 0 : prevEntry.type) {
|
583
491
|
case undefined:
|
584
492
|
engineModules.set(inEngineName, {
|
585
493
|
type: 'fastboot-only',
|
586
494
|
'fastboot-js': {
|
587
|
-
|
588
|
-
|
495
|
+
localPath: inAddonName,
|
496
|
+
packageRoot: addon.root,
|
589
497
|
fromPackageName: addon.name,
|
590
498
|
},
|
591
499
|
});
|
@@ -598,8 +506,8 @@ class Resolver {
|
|
598
506
|
engineModules.set(inEngineName, {
|
599
507
|
type: 'both',
|
600
508
|
'fastboot-js': {
|
601
|
-
|
602
|
-
|
509
|
+
localPath: inAddonName,
|
510
|
+
packageRoot: addon.root,
|
603
511
|
fromPackageName: addon.name,
|
604
512
|
},
|
605
513
|
'app-js': prevEntry['app-js'],
|
@@ -630,7 +538,7 @@ class Resolver {
|
|
630
538
|
});
|
631
539
|
}
|
632
540
|
handleRewrittenPackages(request) {
|
633
|
-
if (request.
|
541
|
+
if (request.isVirtual) {
|
634
542
|
return request;
|
635
543
|
}
|
636
544
|
let requestingPkg = this.packageCache.ownerOfFile(request.fromFile);
|
@@ -649,6 +557,10 @@ class Resolver {
|
|
649
557
|
targetPkg = this.packageCache.resolve(packageName, requestingPkg);
|
650
558
|
}
|
651
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)
|
652
564
|
if (err.code !== 'MODULE_NOT_FOUND') {
|
653
565
|
throw err;
|
654
566
|
}
|
@@ -664,26 +576,14 @@ class Resolver {
|
|
664
576
|
return logTransition('request targets a moved package', request, this.resolveWithinMovedPackage(request, targetPkg));
|
665
577
|
}
|
666
578
|
else if (originalRequestingPkg !== requestingPkg) {
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
return logTransition('outbound request from moved package', request, request
|
671
|
-
// setting meta here because if this fails, we want the fallback
|
672
|
-
// logic to revert our rehome and continue from the *moved* package.
|
673
|
-
.withMeta({ originalFromFile: request.fromFile })
|
674
|
-
.rehome((0, path_1.resolve)(originalRequestingPkg.root, 'package.json')));
|
675
|
-
}
|
676
|
-
else {
|
677
|
-
// requesting package was moved and we failed to find its target. We
|
678
|
-
// can't let that accidentally succeed in the defaultResolve because we
|
679
|
-
// could escape the moved package system.
|
680
|
-
return logTransition('missing outbound request from moved package', request, request.notFound());
|
681
|
-
}
|
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')));
|
682
582
|
}
|
683
583
|
return request;
|
684
584
|
}
|
685
585
|
handleRenaming(request) {
|
686
|
-
if (request.
|
586
|
+
if (request.isVirtual) {
|
687
587
|
return request;
|
688
588
|
}
|
689
589
|
let packageName = (0, shared_internals_1.packageName)(request.specifier);
|
@@ -691,11 +591,14 @@ class Resolver {
|
|
691
591
|
return request;
|
692
592
|
}
|
693
593
|
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
594
|
+
if (!pkg || !pkg.isV2Ember()) {
|
595
|
+
return request;
|
596
|
+
}
|
694
597
|
// real deps take precedence over renaming rules. That is, a package like
|
695
598
|
// ember-source might provide backburner via module renaming, but if you
|
696
599
|
// have an explicit dependency on backburner you should still get that real
|
697
600
|
// copy.
|
698
|
-
if (!
|
601
|
+
if (!pkg.hasDependency(packageName)) {
|
699
602
|
for (let [candidate, replacement] of Object.entries(this.options.renameModules)) {
|
700
603
|
if (candidate === request.specifier) {
|
701
604
|
return logTransition(`renameModules`, request, request.alias(replacement));
|
@@ -713,79 +616,30 @@ class Resolver {
|
|
713
616
|
return logTransition(`renamePackages`, request, request.alias(request.specifier.replace(packageName, this.options.renamePackages[packageName])));
|
714
617
|
}
|
715
618
|
}
|
716
|
-
if (
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
//
|
721
|
-
|
722
|
-
// auto-upgraded packages always get automatically adjusted. They never
|
723
|
-
// supported fancy package.json exports features so this direct mapping
|
724
|
-
// to the root is always right.
|
725
|
-
// "my-app/foo" -> "./foo" from app's package.json
|
726
|
-
// "my-addon/foo" -> "my-addon/foo" from a package that's guaranteed to be able to resolve my-addon
|
727
|
-
let owningEngine = this.owningEngine(pkg);
|
728
|
-
let addonConfig = owningEngine.activeAddons.find(a => a.root === pkg.root);
|
729
|
-
if (addonConfig) {
|
730
|
-
// auto-upgraded addons get special support for self-resolving here.
|
731
|
-
return logTransition(`v1 addon self-import`, request, request.rehome(addonConfig.canResolveFromFile));
|
732
|
-
}
|
733
|
-
else {
|
734
|
-
// auto-upgraded apps will necessarily have packageJSON.exports
|
735
|
-
// because we insert them, so for that support we can fall through to
|
736
|
-
// that support below.
|
737
|
-
}
|
738
|
-
}
|
739
|
-
// v2 packages are supposed to use package.json `exports` to enable
|
740
|
-
// self-imports, but not all build tools actually follow the spec. This
|
741
|
-
// is a workaround for badly behaved packagers.
|
742
|
-
//
|
743
|
-
// Known upstream bugs this works around:
|
744
|
-
// - https://github.com/vitejs/vite/issues/9731
|
745
|
-
if (pkg.packageJSON.exports) {
|
746
|
-
let found = (0, resolve_exports_1.exports)(pkg.packageJSON, request.specifier, {
|
747
|
-
browser: true,
|
748
|
-
conditions: ['default', 'imports'],
|
749
|
-
});
|
750
|
-
if (found === null || found === void 0 ? void 0 : found[0]) {
|
751
|
-
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')));
|
752
|
-
}
|
753
|
-
}
|
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')));
|
754
625
|
}
|
755
626
|
return request;
|
756
627
|
}
|
757
|
-
handleVendor(request) {
|
758
|
-
//TODO move the extra forwardslash handling out into the vite plugin
|
759
|
-
const candidates = [
|
760
|
-
'@embroider/virtual/vendor.js',
|
761
|
-
'/@embroider/virtual/vendor.js',
|
762
|
-
'./@embroider/virtual/vendor.js',
|
763
|
-
];
|
764
|
-
if (!candidates.includes(request.specifier)) {
|
765
|
-
return request;
|
766
|
-
}
|
767
|
-
let pkg = this.packageCache.ownerOfFile(request.fromFile);
|
768
|
-
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) !== this.options.engines[0].root) {
|
769
|
-
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.`);
|
770
|
-
}
|
771
|
-
return logTransition('vendor', request, request.virtualize((0, path_1.resolve)(pkg.root, '-embroider-vendor.js')));
|
772
|
-
}
|
773
628
|
resolveWithinMovedPackage(request, pkg) {
|
774
629
|
let levels = ['..'];
|
775
630
|
if (pkg.name.startsWith('@')) {
|
776
631
|
levels.push('..');
|
777
632
|
}
|
778
|
-
let originalFromFile = request.fromFile;
|
779
633
|
let newRequest = request.rehome((0, path_1.resolve)(pkg.root, ...levels, 'moved-package-target.js'));
|
780
634
|
if (newRequest === request) {
|
781
635
|
return request;
|
782
636
|
}
|
783
|
-
|
784
|
-
|
785
|
-
|
637
|
+
return newRequest.withMeta({
|
638
|
+
resolvedWithinPackage: pkg.root,
|
639
|
+
});
|
786
640
|
}
|
787
641
|
preHandleExternal(request) {
|
788
|
-
if (request.
|
642
|
+
if (request.isVirtual) {
|
789
643
|
return request;
|
790
644
|
}
|
791
645
|
let { specifier, fromFile } = request;
|
@@ -795,6 +649,11 @@ class Resolver {
|
|
795
649
|
}
|
796
650
|
let packageName = (0, shared_internals_1.packageName)(specifier);
|
797
651
|
if (!packageName) {
|
652
|
+
// This is a relative import. We don't automatically externalize those
|
653
|
+
// because it's rare, and by keeping them static we give better errors. But
|
654
|
+
// we do allow them to be explicitly externalized by the package author (or
|
655
|
+
// a compat adapter). In the metadata, they would be listed in
|
656
|
+
// package-relative form, so we need to convert this specifier to that.
|
798
657
|
let absoluteSpecifier = (0, path_1.resolve)((0, path_1.dirname)(fromFile), specifier);
|
799
658
|
if (!absoluteSpecifier.startsWith(pkg.root)) {
|
800
659
|
// this relative path escape its package. So it's not really using
|
@@ -803,23 +662,36 @@ class Resolver {
|
|
803
662
|
// references to runtime utilities, like we do in @embroider/macros.
|
804
663
|
return logTransition('beforeResolve: relative path escapes its package', request);
|
805
664
|
}
|
665
|
+
let packageRelativeSpecifier = (0, shared_internals_2.explicitRelative)(pkg.root, absoluteSpecifier);
|
666
|
+
if (isExplicitlyExternal(packageRelativeSpecifier, pkg)) {
|
667
|
+
let publicSpecifier = absoluteSpecifier.replace(pkg.root, pkg.name);
|
668
|
+
return this.external('beforeResolve', request, publicSpecifier);
|
669
|
+
}
|
806
670
|
// if the requesting file is in an addon's app-js, the relative request
|
807
671
|
// should really be understood as a request for a module in the containing
|
808
|
-
// engine
|
672
|
+
// engine
|
809
673
|
let logicalLocation = this.reverseSearchAppTree(pkg, request.fromFile);
|
810
674
|
if (logicalLocation) {
|
811
|
-
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)));
|
812
676
|
}
|
813
677
|
return request;
|
814
678
|
}
|
679
|
+
// absolute package imports can also be explicitly external based on their
|
680
|
+
// full specifier name
|
681
|
+
if (isExplicitlyExternal(specifier, pkg)) {
|
682
|
+
return this.external('beforeResolve', request, specifier);
|
683
|
+
}
|
684
|
+
if (shared_internals_1.emberVirtualPackages.has(packageName) && !pkg.hasDependency(packageName)) {
|
685
|
+
return this.external('beforeResolve emberVirtualPackages', request, specifier);
|
686
|
+
}
|
815
687
|
if (shared_internals_1.emberVirtualPeerDeps.has(packageName) && !pkg.hasDependency(packageName)) {
|
816
688
|
// addons (whether auto-upgraded or not) may use the app's
|
817
689
|
// emberVirtualPeerDeps, like "@glimmer/component" etc.
|
818
|
-
|
819
|
-
|
820
|
-
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`);
|
821
692
|
}
|
822
|
-
|
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));
|
823
695
|
}
|
824
696
|
// if this file is part of an addon's app-js, it's really the logical
|
825
697
|
// package to which it belongs (normally the app) that affects some policy
|
@@ -828,10 +700,10 @@ class Resolver {
|
|
828
700
|
if (logicalPackage.meta['auto-upgraded'] && !logicalPackage.hasDependency('ember-auto-import')) {
|
829
701
|
try {
|
830
702
|
let dep = this.packageCache.resolve(packageName, logicalPackage);
|
831
|
-
if (!dep.
|
703
|
+
if (!dep.isEmberPackage()) {
|
832
704
|
// classic ember addons can only import non-ember dependencies if they
|
833
705
|
// have ember-auto-import.
|
834
|
-
return
|
706
|
+
return this.external('v1 package without auto-import', request, specifier);
|
835
707
|
}
|
836
708
|
}
|
837
709
|
catch (err) {
|
@@ -841,33 +713,49 @@ class Resolver {
|
|
841
713
|
}
|
842
714
|
}
|
843
715
|
// assertions on what native v2 addons can import
|
844
|
-
if (!pkg.
|
845
|
-
!
|
846
|
-
|
847
|
-
|
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`);
|
721
|
+
}
|
848
722
|
}
|
849
723
|
return request;
|
850
724
|
}
|
851
|
-
|
852
|
-
if (
|
853
|
-
|
854
|
-
return
|
855
|
-
|
856
|
-
|
857
|
-
|
725
|
+
external(label, request, specifier) {
|
726
|
+
if (this.options.amdCompatibility === 'cjs') {
|
727
|
+
let filename = (0, virtual_content_1.virtualExternalCJSModule)(specifier);
|
728
|
+
return logTransition(label, request, request.virtualize(filename));
|
729
|
+
}
|
730
|
+
else if (this.options.amdCompatibility) {
|
731
|
+
let entry = this.options.amdCompatibility.es.find(entry => entry[0] === specifier || entry[0] + '/index' === specifier);
|
732
|
+
if (!entry && request.specifier === 'require') {
|
733
|
+
entry = ['require', ['default', 'has']];
|
734
|
+
}
|
735
|
+
if (!entry) {
|
736
|
+
throw new Error(`A module tried to resolve "${request.specifier}" and didn't find it (${label}).
|
737
|
+
|
738
|
+
- Maybe a dependency declaration is missing?
|
739
|
+
- Remember that v1 addons can only import non-Ember-addon NPM dependencies if they include ember-auto-import in their dependencies.
|
740
|
+
- If this dependency is available in the AMD loader (because someone manually called "define()" for it), you can configure a shim like:
|
741
|
+
|
742
|
+
amdCompatibility: {
|
743
|
+
es: [
|
744
|
+
["${request.specifier}", ["default", "yourNamedExportsGoHere"]],
|
745
|
+
]
|
746
|
+
}
|
747
|
+
|
748
|
+
`);
|
749
|
+
}
|
750
|
+
let filename = (0, virtual_content_1.virtualExternalESModule)(specifier, entry[1]);
|
751
|
+
return logTransition(label, request, request.virtualize(filename));
|
858
752
|
}
|
859
|
-
|
860
|
-
|
861
|
-
if (addon.name === packageName) {
|
862
|
-
return addon;
|
863
|
-
}
|
864
|
-
}
|
753
|
+
else {
|
754
|
+
throw new Error(`Embroider's amdCompatibility option is disabled, but something tried to use it to access "${request.specifier}"`);
|
865
755
|
}
|
866
756
|
}
|
867
|
-
|
868
|
-
|
869
|
-
throw new Error('Build tool bug detected! Fallback resolve should never see an already-resolved request.');
|
870
|
-
}
|
757
|
+
fallbackResolve(request) {
|
758
|
+
var _a, _b, _c;
|
871
759
|
if (request.specifier === '@embroider/macros') {
|
872
760
|
// the macros package is always handled directly within babel (not
|
873
761
|
// necessarily as a real resolvable package), so we should not mess with it.
|
@@ -875,124 +763,108 @@ class Resolver {
|
|
875
763
|
// why we need to know about it.
|
876
764
|
return logTransition('fallback early exit', request);
|
877
765
|
}
|
878
|
-
|
766
|
+
let { specifier, fromFile } = request;
|
767
|
+
if (compatPattern.test(specifier)) {
|
879
768
|
// Some kinds of compat requests get rewritten into other things
|
880
|
-
// deterministically. For example, "
|
769
|
+
// deterministically. For example, "#embroider_compat/helpers/whatever"
|
881
770
|
// means only "the-current-engine/helpers/whatever", and if that doesn't
|
882
771
|
// actually exist it's that path that will show up as a missing import.
|
883
772
|
//
|
884
773
|
// But others have an ambiguous meaning. For example,
|
885
|
-
//
|
774
|
+
// #embroider_compat/components/whatever can mean several different
|
886
775
|
// things. If we're unable to find any of them, the actual
|
887
|
-
// "
|
776
|
+
// "#embroider_compat" request will fall through all the way to here.
|
888
777
|
//
|
889
778
|
// In that case, we don't want to externalize that failure. We know it's
|
890
779
|
// not a classic runtime thing. It's better to let it be a build error
|
891
780
|
// here.
|
892
781
|
return request;
|
893
782
|
}
|
894
|
-
|
895
|
-
|
896
|
-
|
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');
|
897
788
|
}
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
if (
|
909
|
-
|
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`);
|
910
801
|
}
|
911
|
-
|
802
|
+
fromFile = request.meta.wasMovedTo;
|
803
|
+
pkg = movedPkg;
|
912
804
|
}
|
913
|
-
|
805
|
+
if (!pkg.isV2Ember()) {
|
806
|
+
return logTransition('fallbackResolve: not in an ember package', request);
|
807
|
+
}
|
808
|
+
let packageName = (0, shared_internals_1.packageName)(specifier);
|
914
809
|
if (!packageName) {
|
915
810
|
// this is a relative import
|
916
|
-
|
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
|
+
}
|
917
827
|
}
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
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);
|
922
833
|
}
|
923
834
|
}
|
924
|
-
let logicalLocation = this.reverseSearchAppTree(pkg,
|
835
|
+
let logicalLocation = this.reverseSearchAppTree(pkg, fromFile);
|
925
836
|
if (logicalLocation) {
|
926
837
|
// the requesting file is in an addon's appTree. We didn't succeed in
|
927
838
|
// resolving this (non-relative) request from inside the actual addon, so
|
928
839
|
// next try to resolve it from the corresponding logical location in the
|
929
840
|
// app.
|
930
|
-
return logTransition('fallbackResolve: retry from logical home of app-js file', request,
|
931
|
-
// it might look more precise to rehome into logicalLocation.inAppName
|
932
|
-
// rather than package.json. But that logical location may not actually
|
933
|
-
// exist, and some systems (including node's require.resolve) will be
|
934
|
-
// mad about trying to resolve from notional paths that don't really
|
935
|
-
// exist.
|
936
|
-
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)));
|
937
842
|
}
|
938
843
|
let targetingEngine = this.engineConfig(packageName);
|
939
844
|
if (targetingEngine) {
|
940
|
-
let appJSMatch =
|
845
|
+
let appJSMatch = this.searchAppTree(request, targetingEngine, specifier.replace(packageName, '.'));
|
941
846
|
if (appJSMatch) {
|
942
847
|
return logTransition('fallbackResolve: non-relative appJsMatch', request, appJSMatch);
|
943
848
|
}
|
944
849
|
}
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
// meta.originalFromFile gets set when we want to try to rehome a request
|
952
|
-
// but then come back to the original location here in the fallback when the
|
953
|
-
// rehomed request fails
|
954
|
-
let movedPkg = this.packageCache.maybeMoved(pkg);
|
955
|
-
if (movedPkg !== pkg) {
|
956
|
-
let originalFromFile = (_a = request.meta) === null || _a === void 0 ? void 0 : _a.originalFromFile;
|
957
|
-
if (typeof originalFromFile !== 'string') {
|
958
|
-
throw new Error(`bug: embroider resolver's meta is not propagating`);
|
959
|
-
}
|
960
|
-
request = request.rehome(originalFromFile);
|
961
|
-
pkg = movedPkg;
|
962
|
-
}
|
963
|
-
return { pkg, request };
|
964
|
-
}
|
965
|
-
async relativeFallbackResolve(pkg, request) {
|
966
|
-
let withinEngine = this.engineConfig(pkg.name);
|
967
|
-
if (withinEngine) {
|
968
|
-
// it's a relative import inside an engine (which also means app), which
|
969
|
-
// means we may need to satisfy the request via app tree merging.
|
970
|
-
let logicalName = engineRelativeName(pkg, (0, path_1.resolve)((0, path_1.dirname)(request.fromFile), request.specifier));
|
971
|
-
if (!logicalName) {
|
972
|
-
return logTransition('fallbackResolve: relative failure because this file is not externally accessible', request);
|
973
|
-
}
|
974
|
-
let appJSMatch = await this.searchAppTree(request, withinEngine, logicalName);
|
975
|
-
if (appJSMatch) {
|
976
|
-
return logTransition('fallbackResolve: relative appJsMatch', request, appJSMatch);
|
977
|
-
}
|
978
|
-
else {
|
979
|
-
return logTransition('fallbackResolve: relative appJs search failure', request);
|
980
|
-
}
|
850
|
+
if (pkg.meta['auto-upgraded']) {
|
851
|
+
// auto-upgraded packages can fall back to attempting to find dependencies at
|
852
|
+
// runtime. Native v2 packages can only get this behavior in the
|
853
|
+
// isExplicitlyExternal case above because they need to explicitly ask for
|
854
|
+
// externals.
|
855
|
+
return this.external('v1 catch-all fallback', request, specifier);
|
981
856
|
}
|
982
857
|
else {
|
983
|
-
//
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
// auto-upgraded packages can fall back to the set of known active addons
|
989
|
-
let addon = this.locateActiveAddon(requestedPackageName);
|
990
|
-
if (addon) {
|
991
|
-
const rehomed = request.rehome(addon.canResolveFromFile);
|
992
|
-
if (rehomed !== request) {
|
993
|
-
return logTransition(`activeAddons`, request, rehomed);
|
858
|
+
// native v2 packages don't automatically externalize *everything* the way
|
859
|
+
// auto-upgraded packages do, but they still externalize known and approved
|
860
|
+
// ember virtual packages (like @ember/component)
|
861
|
+
if (shared_internals_1.emberVirtualPackages.has(packageName)) {
|
862
|
+
return this.external('emberVirtualPackages', request, specifier);
|
994
863
|
}
|
995
864
|
}
|
865
|
+
// this is falling through with the original specifier which was
|
866
|
+
// non-resolvable, which will presumably cause a static build error in stage3.
|
867
|
+
return logTransition('fallbackResolve final exit', request);
|
996
868
|
}
|
997
869
|
getEntryFromMergeMap(inEngineSpecifier, root) {
|
998
870
|
var _a;
|
@@ -1014,23 +886,25 @@ class Resolver {
|
|
1014
886
|
}
|
1015
887
|
}
|
1016
888
|
}
|
1017
|
-
|
889
|
+
searchAppTree(request, engine, inEngineSpecifier) {
|
1018
890
|
let matched = this.getEntryFromMergeMap(inEngineSpecifier, engine.root);
|
1019
891
|
switch (matched === null || matched === void 0 ? void 0 : matched.entry.type) {
|
1020
892
|
case undefined:
|
1021
893
|
return undefined;
|
1022
894
|
case 'app-only':
|
1023
|
-
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'));
|
1024
898
|
case 'fastboot-only':
|
1025
|
-
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'));
|
1026
902
|
case 'both':
|
1027
|
-
let foundAppJS =
|
1028
|
-
|
1029
|
-
}));
|
1030
|
-
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') {
|
1031
905
|
throw new Error(`${matched.entry['app-js'].fromPackageName} declared ${inEngineSpecifier} in packageJSON.ember-addon.app-js, but that module does not exist`);
|
1032
906
|
}
|
1033
|
-
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'), {});
|
1034
908
|
return request.virtualize((0, virtual_content_1.fastbootSwitch)(matched.matched, (0, path_1.resolve)(engine.root, 'package.json'), names));
|
1035
909
|
}
|
1036
910
|
}
|
@@ -1065,10 +939,14 @@ class Resolver {
|
|
1065
939
|
if (engineConfig) {
|
1066
940
|
// we're directly inside an engine, so we're potentially resolvable as a
|
1067
941
|
// global component
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
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);
|
1072
950
|
}
|
1073
951
|
let engineInfo = this.reverseSearchAppTree(owningPackage, filename);
|
1074
952
|
if (engineInfo) {
|
@@ -1095,6 +973,9 @@ __decorate([
|
|
1095
973
|
__decorate([
|
1096
974
|
(0, typescript_memoize_1.Memoize)()
|
1097
975
|
], Resolver.prototype, "emberVersionSupportsSeparateTemplates", null);
|
976
|
+
function isExplicitlyExternal(specifier, fromPkg) {
|
977
|
+
return Boolean(fromPkg.isV2Addon() && fromPkg.meta['externals'] && fromPkg.meta['externals'].includes(specifier));
|
978
|
+
}
|
1098
979
|
// we don't want to allow things that resolve only by accident that are likely
|
1099
980
|
// to break in other setups. For example: import your dependencies'
|
1100
981
|
// dependencies, or importing your own name from within a monorepo (which will
|
@@ -1116,10 +997,4 @@ function reliablyResolvable(pkg, packageName) {
|
|
1116
997
|
function appImportInAppTree(inPackage, inLogicalPackage, importedPackageName) {
|
1117
998
|
return inPackage !== inLogicalPackage && importedPackageName === inLogicalPackage.name;
|
1118
999
|
}
|
1119
|
-
function engineRelativeName(pkg, filename) {
|
1120
|
-
let outsideName = (0, reverse_exports_1.externalName)(pkg.packageJSON, (0, shared_internals_2.explicitRelative)(pkg.root, filename));
|
1121
|
-
if (outsideName) {
|
1122
|
-
return '.' + outsideName.slice(pkg.name.length);
|
1123
|
-
}
|
1124
|
-
}
|
1125
1000
|
//# sourceMappingURL=module-resolver.js.map
|