@atlaspack/runtime-js 2.14.5-canary.138 → 2.14.5-canary.139
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/lib/JSRuntime.d.ts +9 -0
- package/lib/JSRuntime.js +31 -14
- package/package.json +14 -10
- package/src/{JSRuntime.js → JSRuntime.ts} +69 -50
- package/src/helpers/browser/preload-loader.js +1 -2
- package/test/{bundle-url.test.js → bundle-url.test.ts} +1 -2
- package/tsconfig.json +4 -0
- package/src/helpers/browser/analytics/analytics.js.flow +0 -10
package/lib/JSRuntime.js
CHANGED
|
@@ -76,8 +76,10 @@ const LOADERS = {
|
|
|
76
76
|
}
|
|
77
77
|
};
|
|
78
78
|
function getLoaders(ctx) {
|
|
79
|
+
// @ts-expect-error TS2322
|
|
79
80
|
if (ctx.isWorker()) return LOADERS.worker;
|
|
80
81
|
if (ctx.isBrowser()) return LOADERS.browser;
|
|
82
|
+
// @ts-expect-error TS2322
|
|
81
83
|
if (ctx.isNode()) return LOADERS.node;
|
|
82
84
|
return null;
|
|
83
85
|
}
|
|
@@ -208,6 +210,8 @@ var _default = exports.default = new (_plugin().Runtime)({
|
|
|
208
210
|
const conditions = bundleGraph.getConditionsForDependencies(conditionalDependencies, bundle);
|
|
209
211
|
for (const cond of conditions) {
|
|
210
212
|
const requireName = (0, _featureFlags().getFeatureFlag)('hmrImprovements') || bundle.env.shouldScopeHoist ? 'parcelRequire' : '__parcel__require__';
|
|
213
|
+
|
|
214
|
+
// @ts-expect-error TS7006
|
|
211
215
|
const fallbackUrls = cond => {
|
|
212
216
|
return `[${[...cond.ifTrueBundles, ...cond.ifFalseBundles].map(target => {
|
|
213
217
|
let relativePathExpr = getRelativePathExpr(bundle, target, options);
|
|
@@ -280,9 +284,7 @@ var _default = exports.default = new (_plugin().Runtime)({
|
|
|
280
284
|
}
|
|
281
285
|
|
|
282
286
|
// URL dependency or not, fall back to including a runtime that exports the url
|
|
283
|
-
assets.push(getURLRuntime(dependency, bundle, mainBundle, options,
|
|
284
|
-
// $FlowFixMe
|
|
285
|
-
config.domainSharding));
|
|
287
|
+
assets.push(getURLRuntime(dependency, bundle, mainBundle, options, config.domainSharding));
|
|
286
288
|
}
|
|
287
289
|
|
|
288
290
|
// In development, bundles can be created lazily. This means that the parent bundle may not
|
|
@@ -300,9 +302,7 @@ var _default = exports.default = new (_plugin().Runtime)({
|
|
|
300
302
|
continue;
|
|
301
303
|
}
|
|
302
304
|
let relativePathExpr = getRelativePathExpr(bundle, referencedBundle, options);
|
|
303
|
-
let loaderCode = `require(${JSON.stringify(loader)})(${getAbsoluteUrlExpr(relativePathExpr, bundle,
|
|
304
|
-
// $FlowFixMe
|
|
305
|
-
config.domainSharding)})`;
|
|
305
|
+
let loaderCode = `require(${JSON.stringify(loader)})(${getAbsoluteUrlExpr(relativePathExpr, bundle, config.domainSharding)})`;
|
|
306
306
|
assets.push({
|
|
307
307
|
filePath: __filename,
|
|
308
308
|
code: loaderCode,
|
|
@@ -321,9 +321,7 @@ var _default = exports.default = new (_plugin().Runtime)({
|
|
|
321
321
|
env: {
|
|
322
322
|
sourceType: 'module'
|
|
323
323
|
},
|
|
324
|
-
priority: getManifestBundlePriority(bundleGraph, bundle,
|
|
325
|
-
// $FlowFixMe
|
|
326
|
-
config.splitManifestThreshold)
|
|
324
|
+
priority: getManifestBundlePriority(bundleGraph, bundle, config.splitManifestThreshold)
|
|
327
325
|
});
|
|
328
326
|
}
|
|
329
327
|
return assets;
|
|
@@ -409,6 +407,7 @@ function getLoaderRuntime({
|
|
|
409
407
|
let needsEsmLoadPrelude = false;
|
|
410
408
|
let loaderModules = [];
|
|
411
409
|
function getLoaderForBundle(bundle, to, shardingConfig) {
|
|
410
|
+
// @ts-expect-error TS18049
|
|
412
411
|
let loader = loaders[to.type];
|
|
413
412
|
if (!loader) {
|
|
414
413
|
return;
|
|
@@ -424,7 +423,11 @@ function getLoaderRuntime({
|
|
|
424
423
|
if (!needsDynamicImportPolyfill) {
|
|
425
424
|
return `__parcel__import__("./" + ${relativePathExpr})`;
|
|
426
425
|
}
|
|
427
|
-
|
|
426
|
+
|
|
427
|
+
// @ts-expect-error TS2322
|
|
428
|
+
loader = (0, _nullthrows().default)(
|
|
429
|
+
// @ts-expect-error TS18049
|
|
430
|
+
loaders.IMPORT_POLYFILL, `No import() polyfill available for context '${bundle.env.context}'`);
|
|
428
431
|
} else if (to.type === 'js' && to.env.outputFormat === 'commonjs') {
|
|
429
432
|
return `Promise.resolve(__parcel__require__("./" + ${relativePathExpr}))`;
|
|
430
433
|
}
|
|
@@ -458,8 +461,16 @@ function getLoaderRuntime({
|
|
|
458
461
|
const loaders = [];
|
|
459
462
|
for (const cond of conditions) {
|
|
460
463
|
// This bundle has a conditional dependency, we need to load the bundle group
|
|
461
|
-
const ifTrueLoaders = cond.ifTrueBundles.flatMap(targetBundle => getConditionalLoadersForCondition(getDependencies(targetBundle).conditionalDependencies, targetBundle)).concat(
|
|
462
|
-
|
|
464
|
+
const ifTrueLoaders = cond.ifTrueBundles.flatMap(targetBundle => getConditionalLoadersForCondition(getDependencies(targetBundle).conditionalDependencies, targetBundle)).concat(
|
|
465
|
+
// @ts-expect-error TS2769
|
|
466
|
+
cond.ifTrueBundles.map(targetBundle =>
|
|
467
|
+
// @ts-expect-error TS2554
|
|
468
|
+
getLoaderForBundle(sourceBundle, targetBundle)));
|
|
469
|
+
const ifFalseLoaders = cond.ifFalseBundles.flatMap(targetBundle => getConditionalLoadersForCondition(getDependencies(targetBundle).conditionalDependencies, targetBundle)).concat(
|
|
470
|
+
// @ts-expect-error TS2769
|
|
471
|
+
cond.ifFalseBundles.map(targetBundle =>
|
|
472
|
+
// @ts-expect-error TS2554
|
|
473
|
+
getLoaderForBundle(sourceBundle, targetBundle)));
|
|
463
474
|
if (ifTrueLoaders.length > 0 || ifFalseLoaders.length > 0) {
|
|
464
475
|
// Load conditional bundles with helper (and a dev mode with additional hints)
|
|
465
476
|
loaders.push(`require('./helpers/conditional-loader${options.mode === 'development' ? '-dev' : ''}')('${cond.key}', function (){return Promise.all([${ifTrueLoaders.join(',')}]);}, function (){return Promise.all([${ifFalseLoaders.join(',')}]);})`);
|
|
@@ -545,14 +556,16 @@ function getHintedBundleGroups(bundleGraph, bundle) {
|
|
|
545
556
|
var _dependency$meta;
|
|
546
557
|
let attributes = (_dependency$meta = dependency.meta) === null || _dependency$meta === void 0 ? void 0 : _dependency$meta.importAttributes;
|
|
547
558
|
if (typeof attributes === 'object' && attributes != null && (
|
|
548
|
-
//
|
|
559
|
+
// @ts-expect-error TS2339
|
|
549
560
|
attributes.preload || attributes.prefetch)) {
|
|
550
561
|
let resolved = bundleGraph.resolveAsyncDependency(dependency, bundle);
|
|
551
562
|
if ((resolved === null || resolved === void 0 ? void 0 : resolved.type) === 'bundle_group') {
|
|
552
563
|
// === true for flow
|
|
564
|
+
// @ts-expect-error TS2339
|
|
553
565
|
if (attributes.preload === true) {
|
|
554
566
|
preload.push(resolved.value);
|
|
555
567
|
}
|
|
568
|
+
// @ts-expect-error TS2339
|
|
556
569
|
if (attributes.prefetch === true) {
|
|
557
570
|
prefetch.push(resolved.value);
|
|
558
571
|
}
|
|
@@ -570,8 +583,11 @@ function getHintLoaders(bundleGraph, from, bundleGroups, loader, options) {
|
|
|
570
583
|
let bundlesToPreload = bundleGraph.getBundlesInBundleGroup(bundleGroupToPreload);
|
|
571
584
|
for (let bundleToPreload of bundlesToPreload) {
|
|
572
585
|
let relativePathExpr = getRelativePathExpr(from, bundleToPreload, options);
|
|
586
|
+
// @ts-expect-error TS7053
|
|
573
587
|
let priority = TYPE_TO_RESOURCE_PRIORITY[bundleToPreload.type];
|
|
574
|
-
hintLoaders.push(
|
|
588
|
+
hintLoaders.push(
|
|
589
|
+
// @ts-expect-error TS2554
|
|
590
|
+
`require(${JSON.stringify(loader)})(${getAbsoluteUrlExpr(relativePathExpr, from)}, ${priority ? JSON.stringify(priority) : 'null'}, ${JSON.stringify(bundleToPreload.target.env.outputFormat === 'esmodule')})`);
|
|
575
591
|
}
|
|
576
592
|
}
|
|
577
593
|
return hintLoaders;
|
|
@@ -615,6 +631,7 @@ function getURLRuntime(dependency, from, to, options, shardingConfig) {
|
|
|
615
631
|
};
|
|
616
632
|
}
|
|
617
633
|
function getRegisterCode(entryBundle, bundleGraph) {
|
|
634
|
+
// @ts-expect-error TS2304
|
|
618
635
|
let mappings = [];
|
|
619
636
|
bundleGraph.traverseBundles((bundle, _, actions) => {
|
|
620
637
|
if (bundle.bundleBehavior === 'inline') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/runtime-js",
|
|
3
|
-
"version": "2.14.5-canary.
|
|
3
|
+
"version": "2.14.5-canary.139+d2fd84977",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,19 +9,23 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/atlassian-labs/atlaspack.git"
|
|
11
11
|
},
|
|
12
|
-
"main": "lib/JSRuntime.js",
|
|
13
|
-
"source": "src/JSRuntime.
|
|
12
|
+
"main": "./lib/JSRuntime.js",
|
|
13
|
+
"source": "./src/JSRuntime.ts",
|
|
14
|
+
"types": "./lib/JSRuntime.d.ts",
|
|
14
15
|
"engines": {
|
|
15
16
|
"node": ">= 16.0.0"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
|
-
"@atlaspack/diagnostic": "2.14.1-canary.
|
|
19
|
-
"@atlaspack/domain-sharding": "2.14.1-canary.
|
|
20
|
-
"@atlaspack/feature-flags": "2.14.1-canary.
|
|
21
|
-
"@atlaspack/plugin": "2.14.5-canary.
|
|
22
|
-
"@atlaspack/utils": "2.14.5-canary.
|
|
19
|
+
"@atlaspack/diagnostic": "2.14.1-canary.207+d2fd84977",
|
|
20
|
+
"@atlaspack/domain-sharding": "2.14.1-canary.207+d2fd84977",
|
|
21
|
+
"@atlaspack/feature-flags": "2.14.1-canary.207+d2fd84977",
|
|
22
|
+
"@atlaspack/plugin": "2.14.5-canary.139+d2fd84977",
|
|
23
|
+
"@atlaspack/utils": "2.14.5-canary.139+d2fd84977",
|
|
23
24
|
"nullthrows": "^1.1.1"
|
|
24
25
|
},
|
|
25
26
|
"type": "commonjs",
|
|
26
|
-
"
|
|
27
|
-
|
|
27
|
+
"scripts": {
|
|
28
|
+
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
29
|
+
},
|
|
30
|
+
"gitHead": "d2fd849770fe6305e9c694bd97b1bd905abd9d94"
|
|
31
|
+
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
// @flow strict-local
|
|
2
1
|
import type {
|
|
3
2
|
BundleGraph,
|
|
4
3
|
BundleGroup,
|
|
@@ -13,7 +12,7 @@ import {Runtime} from '@atlaspack/plugin';
|
|
|
13
12
|
import {
|
|
14
13
|
relativeBundlePath,
|
|
15
14
|
validateSchema,
|
|
16
|
-
|
|
15
|
+
SchemaEntity,
|
|
17
16
|
} from '@atlaspack/utils';
|
|
18
17
|
import {encodeJSONKeyComponent} from '@atlaspack/diagnostic';
|
|
19
18
|
import path from 'path';
|
|
@@ -24,7 +23,7 @@ import {getFeatureFlag} from '@atlaspack/feature-flags';
|
|
|
24
23
|
const TYPE_TO_RESOURCE_PRIORITY = {
|
|
25
24
|
css: 'style',
|
|
26
25
|
js: 'script',
|
|
27
|
-
};
|
|
26
|
+
} as const;
|
|
28
27
|
|
|
29
28
|
const BROWSER_PRELOAD_LOADER = './helpers/browser/preload-loader';
|
|
30
29
|
const BROWSER_PREFETCH_LOADER = './helpers/browser/prefetch-loader';
|
|
@@ -49,13 +48,20 @@ const LOADERS = {
|
|
|
49
48
|
wasm: './helpers/node/wasm-loader',
|
|
50
49
|
IMPORT_POLYFILL: null,
|
|
51
50
|
},
|
|
52
|
-
};
|
|
51
|
+
} as const;
|
|
53
52
|
|
|
54
|
-
function getLoaders(
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
function getLoaders(ctx: Environment):
|
|
54
|
+
| {
|
|
55
|
+
// @ts-expect-error TS2411
|
|
56
|
+
IMPORT_POLYFILL: null | false | string;
|
|
57
|
+
[key: string]: string;
|
|
58
|
+
}
|
|
59
|
+
| null
|
|
60
|
+
| undefined {
|
|
61
|
+
// @ts-expect-error TS2322
|
|
57
62
|
if (ctx.isWorker()) return LOADERS.worker;
|
|
58
63
|
if (ctx.isBrowser()) return LOADERS.browser;
|
|
64
|
+
// @ts-expect-error TS2322
|
|
59
65
|
if (ctx.isNode()) return LOADERS.node;
|
|
60
66
|
return null;
|
|
61
67
|
}
|
|
@@ -64,19 +70,19 @@ function getLoaders(
|
|
|
64
70
|
// This can happen when we reuse the BundleGraph between subsequent builds
|
|
65
71
|
let bundleDependencies = new WeakMap<
|
|
66
72
|
NamedBundle,
|
|
67
|
-
{
|
|
68
|
-
asyncDependencies: Array<Dependency
|
|
69
|
-
conditionalDependencies: Array<Dependency
|
|
70
|
-
otherDependencies: Array<Dependency
|
|
71
|
-
|
|
73
|
+
{
|
|
74
|
+
asyncDependencies: Array<Dependency>;
|
|
75
|
+
conditionalDependencies: Array<Dependency>;
|
|
76
|
+
otherDependencies: Array<Dependency>;
|
|
77
|
+
}
|
|
72
78
|
>();
|
|
73
79
|
|
|
74
|
-
type JSRuntimeConfig = {
|
|
75
|
-
splitManifestThreshold: number
|
|
76
|
-
domainSharding?: {
|
|
77
|
-
maxShards: number
|
|
78
|
-
|
|
79
|
-
|
|
80
|
+
type JSRuntimeConfig = {
|
|
81
|
+
splitManifestThreshold: number;
|
|
82
|
+
domainSharding?: {
|
|
83
|
+
maxShards: number;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
80
86
|
|
|
81
87
|
let defaultConfig: JSRuntimeConfig = {
|
|
82
88
|
splitManifestThreshold: 100000,
|
|
@@ -102,7 +108,7 @@ const CONFIG_SCHEMA: SchemaEntity = {
|
|
|
102
108
|
additionalProperties: false,
|
|
103
109
|
};
|
|
104
110
|
|
|
105
|
-
export default
|
|
111
|
+
export default new Runtime({
|
|
106
112
|
async loadConfig({config, options}): Promise<JSRuntimeConfig> {
|
|
107
113
|
let packageKey = '@atlaspack/runtime-js';
|
|
108
114
|
let conf = await config.getConfig<JSRuntimeConfig>([], {
|
|
@@ -144,7 +150,7 @@ export default (new Runtime({
|
|
|
144
150
|
let {asyncDependencies, conditionalDependencies, otherDependencies} =
|
|
145
151
|
getDependencies(bundle);
|
|
146
152
|
|
|
147
|
-
let assets = [];
|
|
153
|
+
let assets: Array<RuntimeAsset> = [];
|
|
148
154
|
for (let dependency of asyncDependencies) {
|
|
149
155
|
let resolved = bundleGraph.resolveAsyncDependency(dependency, bundle);
|
|
150
156
|
if (resolved == null) {
|
|
@@ -221,6 +227,7 @@ export default (new Runtime({
|
|
|
221
227
|
? 'parcelRequire'
|
|
222
228
|
: '__parcel__require__';
|
|
223
229
|
|
|
230
|
+
// @ts-expect-error TS7006
|
|
224
231
|
const fallbackUrls = (cond) => {
|
|
225
232
|
return `[${[...cond.ifTrueBundles, ...cond.ifFalseBundles]
|
|
226
233
|
.map((target) => {
|
|
@@ -329,7 +336,6 @@ export default (new Runtime({
|
|
|
329
336
|
bundle,
|
|
330
337
|
mainBundle,
|
|
331
338
|
options,
|
|
332
|
-
// $FlowFixMe
|
|
333
339
|
config.domainSharding,
|
|
334
340
|
),
|
|
335
341
|
);
|
|
@@ -361,7 +367,6 @@ export default (new Runtime({
|
|
|
361
367
|
)})(${getAbsoluteUrlExpr(
|
|
362
368
|
relativePathExpr,
|
|
363
369
|
bundle,
|
|
364
|
-
// $FlowFixMe
|
|
365
370
|
config.domainSharding,
|
|
366
371
|
)})`;
|
|
367
372
|
assets.push({
|
|
@@ -388,7 +393,6 @@ export default (new Runtime({
|
|
|
388
393
|
priority: getManifestBundlePriority(
|
|
389
394
|
bundleGraph,
|
|
390
395
|
bundle,
|
|
391
|
-
// $FlowFixMe
|
|
392
396
|
config.splitManifestThreshold,
|
|
393
397
|
),
|
|
394
398
|
});
|
|
@@ -396,21 +400,21 @@ export default (new Runtime({
|
|
|
396
400
|
|
|
397
401
|
return assets;
|
|
398
402
|
},
|
|
399
|
-
})
|
|
403
|
+
}) as Runtime<JSRuntimeConfig>;
|
|
400
404
|
|
|
401
|
-
function getDependencies(bundle: NamedBundle): {
|
|
402
|
-
asyncDependencies: Array<Dependency
|
|
403
|
-
conditionalDependencies: Array<Dependency
|
|
404
|
-
otherDependencies: Array<Dependency
|
|
405
|
-
|
|
405
|
+
function getDependencies(bundle: NamedBundle): {
|
|
406
|
+
asyncDependencies: Array<Dependency>;
|
|
407
|
+
conditionalDependencies: Array<Dependency>;
|
|
408
|
+
otherDependencies: Array<Dependency>;
|
|
409
|
+
} {
|
|
406
410
|
let cachedDependencies = bundleDependencies.get(bundle);
|
|
407
411
|
|
|
408
412
|
if (cachedDependencies) {
|
|
409
413
|
return cachedDependencies;
|
|
410
414
|
} else {
|
|
411
|
-
let asyncDependencies = [];
|
|
412
|
-
let otherDependencies = [];
|
|
413
|
-
let conditionalDependencies = [];
|
|
415
|
+
let asyncDependencies: Array<Dependency> = [];
|
|
416
|
+
let otherDependencies: Array<Dependency> = [];
|
|
417
|
+
let conditionalDependencies: Array<Dependency> = [];
|
|
414
418
|
bundle.traverse((node) => {
|
|
415
419
|
if (node.type !== 'dependency') {
|
|
416
420
|
return;
|
|
@@ -444,14 +448,14 @@ function getLoaderRuntime({
|
|
|
444
448
|
bundleGraph,
|
|
445
449
|
options,
|
|
446
450
|
shardingConfig,
|
|
447
|
-
}: {
|
|
448
|
-
bundle: NamedBundle
|
|
449
|
-
dependency: Dependency
|
|
450
|
-
bundleGroup: BundleGroup
|
|
451
|
-
bundleGraph: BundleGraph<NamedBundle
|
|
452
|
-
options: PluginOptions
|
|
453
|
-
shardingConfig: JSRuntimeConfig['domainSharding']
|
|
454
|
-
|
|
451
|
+
}: {
|
|
452
|
+
bundle: NamedBundle;
|
|
453
|
+
dependency: Dependency;
|
|
454
|
+
bundleGroup: BundleGroup;
|
|
455
|
+
bundleGraph: BundleGraph<NamedBundle>;
|
|
456
|
+
options: PluginOptions;
|
|
457
|
+
shardingConfig: JSRuntimeConfig['domainSharding'];
|
|
458
|
+
}): RuntimeAsset | null | undefined {
|
|
455
459
|
let loaders = getLoaders(bundle.env);
|
|
456
460
|
if (loaders == null) {
|
|
457
461
|
return;
|
|
@@ -503,7 +507,8 @@ function getLoaderRuntime({
|
|
|
503
507
|
bundle: NamedBundle,
|
|
504
508
|
to: NamedBundle,
|
|
505
509
|
shardingConfig: JSRuntimeConfig['domainSharding'],
|
|
506
|
-
): string |
|
|
510
|
+
): string | undefined {
|
|
511
|
+
// @ts-expect-error TS18049
|
|
507
512
|
let loader = loaders[to.type];
|
|
508
513
|
if (!loader) {
|
|
509
514
|
return;
|
|
@@ -527,7 +532,9 @@ function getLoaderRuntime({
|
|
|
527
532
|
return `__parcel__import__("./" + ${relativePathExpr})`;
|
|
528
533
|
}
|
|
529
534
|
|
|
535
|
+
// @ts-expect-error TS2322
|
|
530
536
|
loader = nullthrows(
|
|
537
|
+
// @ts-expect-error TS18049
|
|
531
538
|
loaders.IMPORT_POLYFILL,
|
|
532
539
|
`No import() polyfill available for context '${bundle.env.context}'`,
|
|
533
540
|
);
|
|
@@ -580,7 +587,7 @@ function getLoaderRuntime({
|
|
|
580
587
|
sourceBundle,
|
|
581
588
|
);
|
|
582
589
|
|
|
583
|
-
const loaders = [];
|
|
590
|
+
const loaders: Array<string> = [];
|
|
584
591
|
for (const cond of conditions) {
|
|
585
592
|
// This bundle has a conditional dependency, we need to load the bundle group
|
|
586
593
|
const ifTrueLoaders = cond.ifTrueBundles
|
|
@@ -591,7 +598,9 @@ function getLoaderRuntime({
|
|
|
591
598
|
),
|
|
592
599
|
)
|
|
593
600
|
.concat(
|
|
601
|
+
// @ts-expect-error TS2769
|
|
594
602
|
cond.ifTrueBundles.map((targetBundle) =>
|
|
603
|
+
// @ts-expect-error TS2554
|
|
595
604
|
getLoaderForBundle(sourceBundle, targetBundle),
|
|
596
605
|
),
|
|
597
606
|
);
|
|
@@ -604,7 +613,9 @@ function getLoaderRuntime({
|
|
|
604
613
|
),
|
|
605
614
|
)
|
|
606
615
|
.concat(
|
|
616
|
+
// @ts-expect-error TS2769
|
|
607
617
|
cond.ifFalseBundles.map((targetBundle) =>
|
|
618
|
+
// @ts-expect-error TS2554
|
|
608
619
|
getLoaderForBundle(sourceBundle, targetBundle),
|
|
609
620
|
),
|
|
610
621
|
);
|
|
@@ -713,7 +724,7 @@ function getLoaderRuntime({
|
|
|
713
724
|
};
|
|
714
725
|
}
|
|
715
726
|
|
|
716
|
-
let code = [];
|
|
727
|
+
let code: Array<string> = [];
|
|
717
728
|
|
|
718
729
|
if (needsEsmLoadPrelude) {
|
|
719
730
|
let preludeLoad = shardingConfig
|
|
@@ -736,24 +747,29 @@ function getLoaderRuntime({
|
|
|
736
747
|
function getHintedBundleGroups(
|
|
737
748
|
bundleGraph: BundleGraph<NamedBundle>,
|
|
738
749
|
bundle: NamedBundle,
|
|
739
|
-
): {
|
|
740
|
-
|
|
741
|
-
|
|
750
|
+
): {
|
|
751
|
+
preload: Array<BundleGroup>;
|
|
752
|
+
prefetch: Array<BundleGroup>;
|
|
753
|
+
} {
|
|
754
|
+
let preload: Array<BundleGroup> = [];
|
|
755
|
+
let prefetch: Array<BundleGroup> = [];
|
|
742
756
|
let {asyncDependencies} = getDependencies(bundle);
|
|
743
757
|
for (let dependency of asyncDependencies) {
|
|
744
758
|
let attributes = dependency.meta?.importAttributes;
|
|
745
759
|
if (
|
|
746
760
|
typeof attributes === 'object' &&
|
|
747
761
|
attributes != null &&
|
|
748
|
-
//
|
|
762
|
+
// @ts-expect-error TS2339
|
|
749
763
|
(attributes.preload || attributes.prefetch)
|
|
750
764
|
) {
|
|
751
765
|
let resolved = bundleGraph.resolveAsyncDependency(dependency, bundle);
|
|
752
766
|
if (resolved?.type === 'bundle_group') {
|
|
753
767
|
// === true for flow
|
|
768
|
+
// @ts-expect-error TS2339
|
|
754
769
|
if (attributes.preload === true) {
|
|
755
770
|
preload.push(resolved.value);
|
|
756
771
|
}
|
|
772
|
+
// @ts-expect-error TS2339
|
|
757
773
|
if (attributes.prefetch === true) {
|
|
758
774
|
prefetch.push(resolved.value);
|
|
759
775
|
}
|
|
@@ -771,7 +787,7 @@ function getHintLoaders(
|
|
|
771
787
|
loader: string,
|
|
772
788
|
options: PluginOptions,
|
|
773
789
|
): Array<string> {
|
|
774
|
-
let hintLoaders = [];
|
|
790
|
+
let hintLoaders: Array<string> = [];
|
|
775
791
|
for (let bundleGroupToPreload of bundleGroups) {
|
|
776
792
|
let bundlesToPreload =
|
|
777
793
|
bundleGraph.getBundlesInBundleGroup(bundleGroupToPreload);
|
|
@@ -782,8 +798,10 @@ function getHintLoaders(
|
|
|
782
798
|
bundleToPreload,
|
|
783
799
|
options,
|
|
784
800
|
);
|
|
801
|
+
// @ts-expect-error TS7053
|
|
785
802
|
let priority = TYPE_TO_RESOURCE_PRIORITY[bundleToPreload.type];
|
|
786
803
|
hintLoaders.push(
|
|
804
|
+
// @ts-expect-error TS2554
|
|
787
805
|
`require(${JSON.stringify(loader)})(${getAbsoluteUrlExpr(
|
|
788
806
|
relativePathExpr,
|
|
789
807
|
from,
|
|
@@ -870,7 +888,8 @@ function getRegisterCode(
|
|
|
870
888
|
entryBundle: NamedBundle,
|
|
871
889
|
bundleGraph: BundleGraph<NamedBundle>,
|
|
872
890
|
): string {
|
|
873
|
-
|
|
891
|
+
// @ts-expect-error TS2304
|
|
892
|
+
let mappings: Array<FilePath | string> = [];
|
|
874
893
|
bundleGraph.traverseBundles((bundle, _, actions) => {
|
|
875
894
|
if (bundle.bundleBehavior === 'inline') {
|
|
876
895
|
return;
|
|
@@ -972,7 +991,7 @@ function getManifestBundlePriority(
|
|
|
972
991
|
bundleGraph: BundleGraph<NamedBundle>,
|
|
973
992
|
bundle: NamedBundle,
|
|
974
993
|
threshold: number,
|
|
975
|
-
):
|
|
994
|
+
): RuntimeAsset['priority'] {
|
|
976
995
|
let bundleSize = 0;
|
|
977
996
|
|
|
978
997
|
bundle.traverseAssets((asset, _, actions) => {
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
// @flow
|
|
2
1
|
import assert from 'assert';
|
|
3
2
|
|
|
4
3
|
import {getBaseURL, getBundleURL} from '../src/helpers/bundle-url';
|
|
5
4
|
|
|
6
|
-
const createErrorStack = (url) => {
|
|
5
|
+
const createErrorStack = (url: any) => {
|
|
7
6
|
// This error stack is copied from a local dev, with a bunch
|
|
8
7
|
// of lines trimmed off the end so it's not unnecessarily long
|
|
9
8
|
return `
|
package/tsconfig.json
ADDED