@atlaspack/runtime-js 2.16.0 → 2.16.1-typescript-17c3d1dec.0
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/LICENSE +201 -0
- package/lib/JSRuntime.d.ts +9 -0
- package/lib/JSRuntime.js +31 -14
- package/package.json +15 -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/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright (c) 2024 Atlassian US., Inc.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
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.16.0",
|
|
3
|
+
"version": "2.16.1-typescript-17c3d1dec.0",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,18 +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.
|
|
19
|
-
"@atlaspack/domain-sharding": "2.14.
|
|
20
|
-
"@atlaspack/feature-flags": "2.20.0",
|
|
21
|
-
"@atlaspack/plugin": "2.14.
|
|
22
|
-
"@atlaspack/utils": "2.17.
|
|
19
|
+
"@atlaspack/diagnostic": "2.14.2-typescript-17c3d1dec.0",
|
|
20
|
+
"@atlaspack/domain-sharding": "2.14.2-typescript-17c3d1dec.0",
|
|
21
|
+
"@atlaspack/feature-flags": "2.20.1-typescript-17c3d1dec.0",
|
|
22
|
+
"@atlaspack/plugin": "2.14.22-typescript-17c3d1dec.0",
|
|
23
|
+
"@atlaspack/utils": "2.17.4-typescript-17c3d1dec.0",
|
|
23
24
|
"nullthrows": "^1.1.1"
|
|
24
25
|
},
|
|
25
|
-
"type": "commonjs"
|
|
26
|
-
|
|
26
|
+
"type": "commonjs",
|
|
27
|
+
"scripts": {
|
|
28
|
+
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
29
|
+
},
|
|
30
|
+
"gitHead": "17c3d1decf641e688fcfe3ca985e80e9897b7573"
|
|
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