@atlaspack/packager-js 2.14.5-canary.36 → 2.14.5-canary.361
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/CHANGELOG.md +546 -0
- package/dist/CJSOutputFormat.js +34 -0
- package/dist/DevPackager.js +201 -0
- package/dist/ESMOutputFormat.js +102 -0
- package/dist/GlobalOutputFormat.js +18 -0
- package/dist/ScopeHoistingPackager.js +1396 -0
- package/dist/helpers.js +170 -0
- package/dist/index.js +117 -0
- package/dist/utils.js +60 -0
- package/lib/DevPackager.js +28 -4
- package/lib/ESMOutputFormat.js +1 -1
- package/lib/ScopeHoistingPackager.js +301 -112
- package/lib/dev-prelude.js +6 -6
- package/lib/helpers.js +38 -3
- package/lib/index.js +28 -9
- package/lib/types/CJSOutputFormat.d.ts +7 -0
- package/lib/types/DevPackager.d.ts +15 -0
- package/lib/types/ESMOutputFormat.d.ts +7 -0
- package/lib/types/GlobalOutputFormat.d.ts +7 -0
- package/lib/types/ScopeHoistingPackager.d.ts +73 -0
- package/lib/types/helpers.d.ts +12 -0
- package/lib/types/index.d.ts +3 -0
- package/lib/types/utils.d.ts +6 -0
- package/package.json +18 -13
- package/src/{CJSOutputFormat.js → CJSOutputFormat.ts} +0 -1
- package/src/{DevPackager.js → DevPackager.ts} +34 -8
- package/src/{ESMOutputFormat.js → ESMOutputFormat.ts} +3 -4
- package/src/{GlobalOutputFormat.js → GlobalOutputFormat.ts} +0 -1
- package/src/{ScopeHoistingPackager.js → ScopeHoistingPackager.ts} +476 -185
- package/src/dev-prelude.js +6 -6
- package/src/{helpers.js → helpers.ts} +37 -3
- package/src/{index.js → index.ts} +63 -39
- package/src/{utils.js → utils.ts} +2 -3
- package/tsconfig.json +30 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -12,7 +12,7 @@ function _utils() {
|
|
|
12
12
|
return data;
|
|
13
13
|
}
|
|
14
14
|
function _sourceMap2() {
|
|
15
|
-
const data = _interopRequireDefault(require("@
|
|
15
|
+
const data = _interopRequireDefault(require("@atlaspack/source-map"));
|
|
16
16
|
_sourceMap2 = function () {
|
|
17
17
|
return data;
|
|
18
18
|
};
|
|
@@ -60,6 +60,13 @@ function _featureFlags() {
|
|
|
60
60
|
};
|
|
61
61
|
return data;
|
|
62
62
|
}
|
|
63
|
+
function _outdent() {
|
|
64
|
+
const data = require("outdent");
|
|
65
|
+
_outdent = function () {
|
|
66
|
+
return data;
|
|
67
|
+
};
|
|
68
|
+
return data;
|
|
69
|
+
}
|
|
63
70
|
var _ESMOutputFormat = require("./ESMOutputFormat");
|
|
64
71
|
var _CJSOutputFormat = require("./CJSOutputFormat");
|
|
65
72
|
var _GlobalOutputFormat = require("./GlobalOutputFormat");
|
|
@@ -70,7 +77,6 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
70
77
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
71
78
|
// General regex used to replace imports with the resolved code, references with resolutions,
|
|
72
79
|
// and count the number of newlines in the file for source maps.
|
|
73
|
-
//
|
|
74
80
|
// For conditional bundling the only difference in this regex is adding `importCond` where we have `importAsync` etc..
|
|
75
81
|
const REPLACEMENT_RE_CONDITIONAL = /\n|import\s+"([0-9a-f]{16,20}:.+?)";|(?:\$[0-9a-f]{16,20}\$exports)|(?:\$[0-9a-f]{16,20}\$(?:import|importAsync|require|importCond)\$[0-9a-f]+(?:\$[0-9a-f]+)?)/g;
|
|
76
82
|
const REPLACEMENT_RE = /\n|import\s+"([0-9a-f]{16,20}:.+?)";|(?:\$[0-9a-f]{16,20}\$exports)|(?:\$[0-9a-f]{16,20}\$(?:import|importAsync|require)\$[0-9a-f]+(?:\$[0-9a-f]+)?)/g;
|
|
@@ -80,6 +86,7 @@ const GLOBALS_BY_CONTEXT = {
|
|
|
80
86
|
'web-worker': new Set([...BUILTINS, ...Object.keys(_globals().default.worker)]),
|
|
81
87
|
'service-worker': new Set([...BUILTINS, ...Object.keys(_globals().default.serviceworker)]),
|
|
82
88
|
worklet: new Set([...BUILTINS]),
|
|
89
|
+
tesseract: new Set([...BUILTINS, ...Object.keys(_globals().default.worker)]),
|
|
83
90
|
node: new Set([...BUILTINS, ...Object.keys(_globals().default.node)]),
|
|
84
91
|
'electron-main': new Set([...BUILTINS, ...Object.keys(_globals().default.node)]),
|
|
85
92
|
'electron-renderer': new Set([...BUILTINS, ...Object.keys(_globals().default.node), ...Object.keys(_globals().default.browser)])
|
|
@@ -90,32 +97,36 @@ const OUTPUT_FORMATS = {
|
|
|
90
97
|
global: _GlobalOutputFormat.GlobalOutputFormat
|
|
91
98
|
};
|
|
92
99
|
class ScopeHoistingPackager {
|
|
100
|
+
assetOutputs = new Map();
|
|
93
101
|
exportedSymbols = new Map();
|
|
94
102
|
externals = new Map();
|
|
95
103
|
topLevelNames = new Map();
|
|
96
104
|
seenAssets = new Set();
|
|
97
105
|
wrappedAssets = new Set();
|
|
106
|
+
constantAssets = new Set();
|
|
98
107
|
hoistedRequires = new Map();
|
|
108
|
+
seenHoistedRequires = new Set();
|
|
99
109
|
needsPrelude = false;
|
|
100
110
|
usedHelpers = new Set();
|
|
101
111
|
externalAssets = new Set();
|
|
102
|
-
|
|
103
|
-
|
|
112
|
+
useBothScopeHoistingImprovements = (0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovementV2') || (0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovement');
|
|
113
|
+
referencedAssetsCache = new Map();
|
|
114
|
+
constructor(options, bundleGraph, bundle, parcelRequireName, useAsyncBundleRuntime, manualStaticBindingExports, logger) {
|
|
104
115
|
this.options = options;
|
|
105
116
|
this.bundleGraph = bundleGraph;
|
|
106
117
|
this.bundle = bundle;
|
|
107
118
|
this.parcelRequireName = parcelRequireName;
|
|
108
119
|
this.useAsyncBundleRuntime = useAsyncBundleRuntime;
|
|
109
|
-
this.
|
|
120
|
+
this.manualStaticBindingExports = (manualStaticBindingExports === null || manualStaticBindingExports === void 0 ? void 0 : manualStaticBindingExports.map(glob => (0, _utils().globToRegex)(glob))) ?? null;
|
|
110
121
|
this.logger = logger;
|
|
111
122
|
let OutputFormat = OUTPUT_FORMATS[this.bundle.env.outputFormat];
|
|
112
123
|
this.outputFormat = new OutputFormat(this);
|
|
113
|
-
this.isAsyncBundle = this.bundleGraph.hasParentBundleOfType(this.bundle, 'js') && !this.bundle.env.isIsolated() && this.bundle.bundleBehavior !== 'isolated';
|
|
124
|
+
this.isAsyncBundle = this.bundleGraph.hasParentBundleOfType(this.bundle, 'js') && !this.bundle.env.isIsolated() && this.bundle.bundleBehavior !== 'isolated' && this.bundle.bundleBehavior !== 'inlineIsolated';
|
|
114
125
|
this.globalNames = GLOBALS_BY_CONTEXT[bundle.env.context];
|
|
115
126
|
}
|
|
116
127
|
async package() {
|
|
117
128
|
var _sourceMap;
|
|
118
|
-
|
|
129
|
+
await this.loadAssets();
|
|
119
130
|
this.buildExportedSymbols();
|
|
120
131
|
|
|
121
132
|
// If building a library, the target is actually another bundler rather
|
|
@@ -134,6 +145,7 @@ class ScopeHoistingPackager {
|
|
|
134
145
|
let lineCount = 0;
|
|
135
146
|
let sourceMap = null;
|
|
136
147
|
let processAsset = asset => {
|
|
148
|
+
this.seenHoistedRequires.clear();
|
|
137
149
|
let [content, map, lines] = this.visitAsset(asset);
|
|
138
150
|
if (sourceMap && map) {
|
|
139
151
|
sourceMap.addSourceMap(map, lineCount);
|
|
@@ -143,11 +155,19 @@ class ScopeHoistingPackager {
|
|
|
143
155
|
res += content + '\n';
|
|
144
156
|
lineCount += lines + 1;
|
|
145
157
|
};
|
|
158
|
+
if ((0, _featureFlags().getFeatureFlag)('inlineConstOptimisationFix') || this.useBothScopeHoistingImprovements) {
|
|
159
|
+
// Write out all constant modules used by this bundle
|
|
160
|
+
for (let asset of this.constantAssets) {
|
|
161
|
+
if (!this.seenAssets.has(asset)) {
|
|
162
|
+
processAsset(asset);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
146
166
|
|
|
147
167
|
// Hoist wrapped asset to the top of the bundle to ensure that they are registered
|
|
148
168
|
// before they are used.
|
|
149
|
-
for (let asset of wrappedAssets) {
|
|
150
|
-
if (!this.seenAssets.has(asset
|
|
169
|
+
for (let asset of this.wrappedAssets) {
|
|
170
|
+
if (!this.seenAssets.has(asset)) {
|
|
151
171
|
processAsset(asset);
|
|
152
172
|
}
|
|
153
173
|
}
|
|
@@ -155,7 +175,7 @@ class ScopeHoistingPackager {
|
|
|
155
175
|
// Add each asset that is directly connected to the bundle. Dependencies will be handled
|
|
156
176
|
// by replacing `import` statements in the code.
|
|
157
177
|
this.bundle.traverseAssets((asset, _, actions) => {
|
|
158
|
-
if (this.seenAssets.has(asset
|
|
178
|
+
if (this.seenAssets.has(asset)) {
|
|
159
179
|
actions.skipChildren();
|
|
160
180
|
return;
|
|
161
181
|
}
|
|
@@ -165,23 +185,35 @@ class ScopeHoistingPackager {
|
|
|
165
185
|
let [prelude, preludeLines] = this.buildBundlePrelude();
|
|
166
186
|
res = prelude + res;
|
|
167
187
|
lineCount += preludeLines;
|
|
188
|
+
// @ts-expect-error TS2339 - offsetLines method exists but missing from @parcel/source-map type definitions
|
|
168
189
|
(_sourceMap = sourceMap) === null || _sourceMap === void 0 || _sourceMap.offsetLines(1, preludeLines);
|
|
169
190
|
let entries = this.bundle.getEntryAssets();
|
|
170
191
|
let mainEntry = this.bundle.getMainEntry();
|
|
171
192
|
if (this.isAsyncBundle) {
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
193
|
+
if (this.useBothScopeHoistingImprovements || (0, _featureFlags().getFeatureFlag)('supportWebpackChunkName')) {
|
|
194
|
+
// Generally speaking, async bundles should not be executed on load, as
|
|
195
|
+
// they're just collections of assets that other assets require.
|
|
196
|
+
// However, there are some special cases where a runtime asset needs to be
|
|
197
|
+
// injected, but no other asset will require it (mostly the bundle
|
|
198
|
+
// manifest).
|
|
199
|
+
// In this case, those assets need to be required on load.
|
|
200
|
+
entries = entries.filter(a => {
|
|
201
|
+
var _a$meta;
|
|
202
|
+
return (_a$meta = a.meta) === null || _a$meta === void 0 ? void 0 : _a$meta.runtimeAssetRequiringExecutionOnLoad;
|
|
203
|
+
});
|
|
204
|
+
} else {
|
|
205
|
+
entries = entries.filter(a => {
|
|
206
|
+
var _mainEntry;
|
|
207
|
+
return a.id !== ((_mainEntry = mainEntry) === null || _mainEntry === void 0 ? void 0 : _mainEntry.id);
|
|
208
|
+
});
|
|
209
|
+
}
|
|
178
210
|
mainEntry = null;
|
|
179
211
|
}
|
|
180
212
|
let needsBundleQueue = this.shouldBundleQueue(this.bundle);
|
|
181
213
|
|
|
182
214
|
// If any of the entry assets are wrapped, call parcelRequire so they are executed.
|
|
183
215
|
for (let entry of entries) {
|
|
184
|
-
if (this.wrappedAssets.has(entry
|
|
216
|
+
if (this.wrappedAssets.has(entry) && !this.isScriptEntry(entry)) {
|
|
185
217
|
var _entry$symbols$get;
|
|
186
218
|
let parcelRequire = `parcelRequire(${JSON.stringify(this.bundleGraph.getAssetPublicId(entry))});\n`;
|
|
187
219
|
let entryExports = (_entry$symbols$get = entry.symbols.get('*')) === null || _entry$symbols$get === void 0 ? void 0 : _entry$symbols$get.local;
|
|
@@ -211,38 +243,46 @@ class ScopeHoistingPackager {
|
|
|
211
243
|
let {
|
|
212
244
|
code,
|
|
213
245
|
map: mapBuffer
|
|
214
|
-
} = (0, _nullthrows().default)(this.assetOutputs.get(mainEntry
|
|
246
|
+
} = (0, _nullthrows().default)(this.assetOutputs.get(mainEntry));
|
|
215
247
|
let map;
|
|
216
248
|
if (mapBuffer) {
|
|
217
249
|
map = new (_sourceMap2().default)(this.options.projectRoot, mapBuffer);
|
|
218
250
|
}
|
|
219
251
|
res += (0, _utils2.replaceScriptDependencies)(this.bundleGraph, this.bundle, code, map, this.parcelRequireName);
|
|
220
252
|
if (sourceMap && map) {
|
|
253
|
+
// @ts-expect-error TS2339 - addSourceMap method exists but missing from @parcel/source-map type definitions
|
|
221
254
|
sourceMap.addSourceMap(map, lineCount);
|
|
222
255
|
}
|
|
223
256
|
}
|
|
224
|
-
|
|
257
|
+
const result = {
|
|
225
258
|
contents: res,
|
|
226
259
|
map: sourceMap
|
|
227
260
|
};
|
|
261
|
+
if (_utils().debugTools['scope-hoisting-stats']) {
|
|
262
|
+
result.scopeHoistingStats = {
|
|
263
|
+
totalAssets: this.assetOutputs.size,
|
|
264
|
+
wrappedAssets: this.wrappedAssets.size
|
|
265
|
+
};
|
|
266
|
+
}
|
|
267
|
+
return result;
|
|
228
268
|
}
|
|
229
269
|
shouldBundleQueue(bundle) {
|
|
230
270
|
let referencingBundles = this.bundleGraph.getReferencingBundles(bundle);
|
|
231
271
|
let hasHtmlReference = referencingBundles.some(b => b.type === 'html');
|
|
232
272
|
let hasConditionalReference = false;
|
|
233
273
|
let isConditionalBundle = false;
|
|
234
|
-
if ((0, _featureFlags().getFeatureFlag)('conditionalBundlingApi')
|
|
274
|
+
if ((0, _featureFlags().getFeatureFlag)('conditionalBundlingApi')) {
|
|
235
275
|
// If the bundle has a conditional bundle reference (has an importCond)
|
|
236
276
|
hasConditionalReference = this.bundleGraph.getReferencedConditionalBundles(bundle).length > 0;
|
|
237
277
|
// If the bundle is a conditional bundle
|
|
238
278
|
isConditionalBundle = this.hasConditionalDependency();
|
|
239
279
|
}
|
|
240
|
-
return this.useAsyncBundleRuntime && bundle.type === 'js' && bundle.bundleBehavior !== 'inline' && bundle.env.outputFormat === 'esmodule' && !bundle.env.isIsolated() && bundle.bundleBehavior !== 'isolated' && (hasHtmlReference || hasConditionalReference || isConditionalBundle);
|
|
280
|
+
return this.useAsyncBundleRuntime && bundle.type === 'js' && bundle.bundleBehavior !== 'inline' && bundle.bundleBehavior !== 'inlineIsolated' && bundle.env.outputFormat === 'esmodule' && !bundle.env.isIsolated() && bundle.bundleBehavior !== 'isolated' && (hasHtmlReference || hasConditionalReference || isConditionalBundle);
|
|
241
281
|
}
|
|
242
282
|
runWhenReady(bundle, codeToRun) {
|
|
243
283
|
let deps = this.bundleGraph.getReferencedBundles(bundle).filter(b => this.shouldBundleQueue(b)).map(b => b.publicId);
|
|
244
284
|
const conditions = [];
|
|
245
|
-
if ((0, _featureFlags().getFeatureFlag)('conditionalBundlingApi')
|
|
285
|
+
if ((0, _featureFlags().getFeatureFlag)('conditionalBundlingApi')) {
|
|
246
286
|
const conditionSet = this.bundleGraph.getConditionalBundleMapping().get(bundle.id);
|
|
247
287
|
for (const [key, {
|
|
248
288
|
ifTrueBundles,
|
|
@@ -260,56 +300,127 @@ class ScopeHoistingPackager {
|
|
|
260
300
|
let params = [JSON.stringify(this.bundle.publicId), (0, _helpers.fnExpr)(this.bundle.env, [], [codeToRun]), `${JSON.stringify(deps)}${conditions.length > 0 ? `.concat([${conditions.map(conditions => `...${conditions}`).join(',')}])` : ''}`];
|
|
261
301
|
return `$parcel$global.rwr(${params.join(', ')});`;
|
|
262
302
|
}
|
|
303
|
+
|
|
304
|
+
// Helper to check if an asset is referenced, with cache-first + fast-check hybrid approach
|
|
305
|
+
isAssetReferencedInBundle(bundle, asset) {
|
|
306
|
+
// STEP 1: Check expensive computation cache first (fastest when it hits)
|
|
307
|
+
|
|
308
|
+
let bundleId = bundle.id;
|
|
309
|
+
let referencedAssets = this.referencedAssetsCache.get(bundleId);
|
|
310
|
+
if (referencedAssets) {
|
|
311
|
+
// Cache hit - fastest path (~0.001ms)
|
|
312
|
+
return referencedAssets.has(asset);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
// STEP 2: Cache miss - try fast checks (~0.01ms)
|
|
316
|
+
let fastCheckResult = this.bundleGraph.isAssetReferencedFastCheck(bundle, asset);
|
|
317
|
+
if (fastCheckResult === true) {
|
|
318
|
+
// Fast check succeeded - asset is referenced
|
|
319
|
+
return true;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// STEP 3: Need expensive computation (~20-2000ms)
|
|
323
|
+
|
|
324
|
+
// Compute and cache expensive results for this bundle
|
|
325
|
+
referencedAssets = this.bundleGraph.getReferencedAssets(bundle);
|
|
326
|
+
this.referencedAssetsCache.set(bundleId, referencedAssets);
|
|
327
|
+
return referencedAssets.has(asset);
|
|
328
|
+
}
|
|
263
329
|
async loadAssets() {
|
|
264
330
|
let queue = new (_utils().PromiseQueue)({
|
|
265
331
|
maxConcurrent: 32
|
|
266
332
|
});
|
|
267
|
-
let wrapped = [];
|
|
268
333
|
this.bundle.traverseAssets(asset => {
|
|
269
334
|
queue.add(async () => {
|
|
270
335
|
let [code, map] = await Promise.all([asset.getCode(), this.bundle.env.sourceMap ? asset.getMapBuffer() : null]);
|
|
271
|
-
return [asset
|
|
336
|
+
return [asset, {
|
|
272
337
|
code,
|
|
273
338
|
map
|
|
274
339
|
}];
|
|
275
340
|
});
|
|
276
|
-
if (asset.meta.shouldWrap || this.bundle.env.sourceType === 'script' || this.
|
|
341
|
+
if (asset.meta.shouldWrap || this.bundle.env.sourceType === 'script' || this.isAssetReferencedInBundle(this.bundle, asset) || this.bundleGraph.getIncomingDependencies(asset).some(dep => dep.meta.shouldWrap && dep.specifierType !== 'url')) {
|
|
277
342
|
// Don't wrap constant "entry" modules _except_ if they are referenced by any lazy dependency
|
|
278
343
|
if (!asset.meta.isConstantModule || this.bundleGraph.getIncomingDependencies(asset).some(dep => dep.priority === 'lazy')) {
|
|
279
|
-
this.wrappedAssets.add(asset
|
|
280
|
-
|
|
344
|
+
this.wrappedAssets.add(asset);
|
|
345
|
+
} else if (((0, _featureFlags().getFeatureFlag)('inlineConstOptimisationFix') || this.useBothScopeHoistingImprovements) && asset.meta.isConstantModule) {
|
|
346
|
+
this.constantAssets.add(asset);
|
|
281
347
|
}
|
|
282
348
|
}
|
|
283
349
|
});
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
// In particular this can force an async bundle to be scope hoisted where it previously would not be
|
|
297
|
-
// due to the entry asset being wrapped.
|
|
298
|
-
if (this.forceSkipWrapAssets.length > 0 && this.forceSkipWrapAssets.some(p => p === _path().default.relative(this.options.projectRoot, asset.filePath))) {
|
|
299
|
-
this.logger.verbose({
|
|
300
|
-
message: `Force skipping wrapping of ${_path().default.relative(this.options.projectRoot, asset.filePath)}`
|
|
301
|
-
});
|
|
302
|
-
actions.skipChildren();
|
|
303
|
-
return;
|
|
350
|
+
if (this.useBothScopeHoistingImprovements) {
|
|
351
|
+
// Tracks which assets have been assigned to a wrap group
|
|
352
|
+
let assignedAssets = new Set();
|
|
353
|
+
|
|
354
|
+
// In V2 scope hoisting, we iterate from the main entry, rather than
|
|
355
|
+
// wrapping the entry assets
|
|
356
|
+
if (!(0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovementV2')) {
|
|
357
|
+
// Make all entry assets wrapped, to avoid any top level hoisting
|
|
358
|
+
for (let entryAsset of this.bundle.getEntryAssets()) {
|
|
359
|
+
if (!this.wrappedAssets.has(entryAsset)) {
|
|
360
|
+
this.wrappedAssets.add(entryAsset);
|
|
361
|
+
}
|
|
304
362
|
}
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// We need to make a new copy here so that we can add to the list and
|
|
366
|
+
// iterate the newly added items, without mutating the wrappedAssets set
|
|
367
|
+
let moduleGroupParents = [...this.wrappedAssets.values()];
|
|
368
|
+
if ((0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovementV2')) {
|
|
369
|
+
// The main entry needs to be check to find assets that would have gone in
|
|
370
|
+
// the top level scope
|
|
371
|
+
let mainEntry = this.bundle.getMainEntry();
|
|
372
|
+
if (mainEntry && !this.wrappedAssets.has(mainEntry)) {
|
|
373
|
+
moduleGroupParents.unshift(mainEntry);
|
|
308
374
|
}
|
|
309
|
-
}
|
|
375
|
+
}
|
|
376
|
+
for (let moduleGroupParentAsset of moduleGroupParents) {
|
|
377
|
+
this.bundle.traverseAssets((asset, _, actions) => {
|
|
378
|
+
if (asset === moduleGroupParentAsset) {
|
|
379
|
+
return;
|
|
380
|
+
}
|
|
381
|
+
if (this.wrappedAssets.has(asset)) {
|
|
382
|
+
actions.skipChildren();
|
|
383
|
+
return;
|
|
384
|
+
}
|
|
385
|
+
if (!asset.meta.isConstantModule && (assignedAssets.has(asset) || this.isReExported(asset))) {
|
|
386
|
+
this.wrappedAssets.add(asset);
|
|
387
|
+
|
|
388
|
+
// This also needs to be added to the traversal so that we iterate
|
|
389
|
+
// it during this check.
|
|
390
|
+
moduleGroupParents.push(asset);
|
|
391
|
+
actions.skipChildren();
|
|
392
|
+
return;
|
|
393
|
+
}
|
|
394
|
+
assignedAssets.add(asset);
|
|
395
|
+
}, moduleGroupParentAsset);
|
|
396
|
+
}
|
|
397
|
+
} else {
|
|
398
|
+
for (let wrappedAssetRoot of this.wrappedAssets) {
|
|
399
|
+
this.bundle.traverseAssets((asset, _, actions) => {
|
|
400
|
+
if (asset === wrappedAssetRoot) {
|
|
401
|
+
return;
|
|
402
|
+
}
|
|
403
|
+
if (this.wrappedAssets.has(asset)) {
|
|
404
|
+
actions.skipChildren();
|
|
405
|
+
return;
|
|
406
|
+
}
|
|
407
|
+
if (!asset.meta.isConstantModule) {
|
|
408
|
+
this.wrappedAssets.add(asset);
|
|
409
|
+
}
|
|
410
|
+
}, wrappedAssetRoot);
|
|
411
|
+
}
|
|
310
412
|
}
|
|
311
413
|
this.assetOutputs = new Map(await queue.run());
|
|
312
|
-
|
|
414
|
+
}
|
|
415
|
+
isReExported(asset) {
|
|
416
|
+
let parentSymbols = this.bundleGraph.getIncomingDependencies(asset).map(dep => this.bundleGraph.getAssetWithDependency(dep)).flatMap(parent => {
|
|
417
|
+
if (parent == null) {
|
|
418
|
+
return [];
|
|
419
|
+
}
|
|
420
|
+
return this.bundleGraph.getExportedSymbols(parent, this.bundle);
|
|
421
|
+
});
|
|
422
|
+
let assetSymbols = this.bundleGraph.getExportedSymbols(asset, this.bundle);
|
|
423
|
+
return assetSymbols.some(assetSymbol => parentSymbols.some(parentSymbol => parentSymbol.symbol === assetSymbol.symbol));
|
|
313
424
|
}
|
|
314
425
|
buildExportedSymbols() {
|
|
315
426
|
if (!this.bundle.env.isLibrary || this.bundle.env.outputFormat !== 'esmodule') {
|
|
@@ -318,7 +429,7 @@ class ScopeHoistingPackager {
|
|
|
318
429
|
|
|
319
430
|
// TODO: handle ESM exports of wrapped entry assets...
|
|
320
431
|
let entry = this.bundle.getMainEntry();
|
|
321
|
-
if (entry && !this.wrappedAssets.has(entry
|
|
432
|
+
if (entry && !this.wrappedAssets.has(entry)) {
|
|
322
433
|
let hasNamespace = entry.symbols.hasExportSymbol('*');
|
|
323
434
|
for (let {
|
|
324
435
|
asset,
|
|
@@ -387,16 +498,19 @@ class ScopeHoistingPackager {
|
|
|
387
498
|
return `${obj}[${JSON.stringify(property)}]`;
|
|
388
499
|
}
|
|
389
500
|
visitAsset(asset) {
|
|
390
|
-
(0, _assert().default)(!this.seenAssets.has(asset
|
|
391
|
-
this.seenAssets.add(asset
|
|
501
|
+
(0, _assert().default)(!this.seenAssets.has(asset), 'Already visited asset');
|
|
502
|
+
this.seenAssets.add(asset);
|
|
392
503
|
let {
|
|
393
504
|
code,
|
|
394
505
|
map
|
|
395
|
-
} = (0, _nullthrows().default)(this.assetOutputs.get(asset
|
|
506
|
+
} = (0, _nullthrows().default)(this.assetOutputs.get(asset));
|
|
396
507
|
return this.buildAsset(asset, code, map);
|
|
397
508
|
}
|
|
509
|
+
getAssetFilePath(asset) {
|
|
510
|
+
return _path().default.relative(this.options.projectRoot, asset.filePath);
|
|
511
|
+
}
|
|
398
512
|
buildAsset(asset, code, map) {
|
|
399
|
-
let shouldWrap = this.wrappedAssets.has(asset
|
|
513
|
+
let shouldWrap = this.wrappedAssets.has(asset);
|
|
400
514
|
let deps = this.bundleGraph.getDependencies(asset);
|
|
401
515
|
let sourceMap = this.bundle.env.sourceMap && map ? new (_sourceMap2().default)(this.options.projectRoot, map) : null;
|
|
402
516
|
|
|
@@ -416,13 +530,26 @@ class ScopeHoistingPackager {
|
|
|
416
530
|
}
|
|
417
531
|
continue;
|
|
418
532
|
}
|
|
419
|
-
if (this.bundle.hasAsset(resolved) && !this.seenAssets.has(resolved
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
533
|
+
if (this.bundle.hasAsset(resolved) && !this.seenAssets.has(resolved)) {
|
|
534
|
+
if (this.useBothScopeHoistingImprovements && this.wrappedAssets.has(resolved)) {
|
|
535
|
+
if (this.wrappedAssets.has(asset)) {
|
|
536
|
+
// If both the asset and the dep are wrapped there's no need to
|
|
537
|
+
// drop a side-effect require. This is an extremely rare case.
|
|
538
|
+
continue;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
// When the dep is wrapped then we just need to drop a side effect
|
|
542
|
+
// require instead of inlining
|
|
543
|
+
depCode += `parcelRequire("${this.bundleGraph.getAssetPublicId(resolved)}");\n`;
|
|
544
|
+
lineCount += 1;
|
|
545
|
+
} else {
|
|
546
|
+
let [code, map, lines] = this.visitAsset(resolved);
|
|
547
|
+
depCode += code + '\n';
|
|
548
|
+
if (sourceMap && map) {
|
|
549
|
+
sourceMap.addSourceMap(map, lineCount);
|
|
550
|
+
}
|
|
551
|
+
lineCount += lines + 1;
|
|
424
552
|
}
|
|
425
|
-
lineCount += lines + 1;
|
|
426
553
|
}
|
|
427
554
|
}
|
|
428
555
|
return [depCode, sourceMap, lineCount];
|
|
@@ -482,20 +609,51 @@ class ScopeHoistingPackager {
|
|
|
482
609
|
// after the dependency is declared. This handles the case where the resulting asset
|
|
483
610
|
// is wrapped, but the dependency in this asset is not marked as wrapped. This means
|
|
484
611
|
// that it was imported/required at the top-level, so its side effects should run immediately.
|
|
485
|
-
let
|
|
612
|
+
let res = '';
|
|
613
|
+
let lines = 0;
|
|
486
614
|
let map;
|
|
487
|
-
if (
|
|
615
|
+
if (!(0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovementV2')) {
|
|
616
|
+
[res, lines] = this.getHoistedParcelRequires(asset, dep, resolved);
|
|
617
|
+
}
|
|
618
|
+
if (this.bundle.hasAsset(resolved) && !this.seenAssets.has(resolved)) {
|
|
488
619
|
// If this asset is wrapped, we need to hoist the code for the dependency
|
|
489
620
|
// outside our parcelRequire.register wrapper. This is safe because all
|
|
490
621
|
// assets referenced by this asset will also be wrapped. Otherwise, inline the
|
|
491
622
|
// asset content where the import statement was.
|
|
492
|
-
if (
|
|
493
|
-
|
|
623
|
+
if (this.useBothScopeHoistingImprovements) {
|
|
624
|
+
if (!resolved.meta.isConstantModule && !this.wrappedAssets.has(resolved)) {
|
|
625
|
+
let [depCode, depMap, depLines] = this.visitAsset(resolved);
|
|
626
|
+
if (_utils().debugTools['asset-file-names-in-output']) {
|
|
627
|
+
let resolvedPath = this.getAssetFilePath(resolved);
|
|
628
|
+
res = (0, _outdent().outdent)`
|
|
629
|
+
/* Scope hoisted asset: ${resolvedPath} */
|
|
630
|
+
${depCode}
|
|
631
|
+
/* End: ${resolvedPath} */
|
|
632
|
+
${res}
|
|
633
|
+
`;
|
|
634
|
+
lines += 3 + depLines;
|
|
635
|
+
} else {
|
|
636
|
+
res = depCode + '\n' + res;
|
|
637
|
+
lines += 1 + depLines;
|
|
638
|
+
}
|
|
639
|
+
map = depMap;
|
|
640
|
+
}
|
|
494
641
|
} else {
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
642
|
+
if (shouldWrap) {
|
|
643
|
+
depContent.push(this.visitAsset(resolved));
|
|
644
|
+
} else {
|
|
645
|
+
let [depCode, depMap, depLines] = this.visitAsset(resolved);
|
|
646
|
+
res = depCode + '\n' + res;
|
|
647
|
+
lines += 1 + depLines;
|
|
648
|
+
map = depMap;
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
if ((0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovementV2')) {
|
|
653
|
+
let [requiresCode, requiresLines] = this.getHoistedParcelRequires(asset, dep, resolved);
|
|
654
|
+
if (requiresCode) {
|
|
655
|
+
res = requiresCode + '\n' + res;
|
|
656
|
+
lines += requiresLines + 1;
|
|
499
657
|
}
|
|
500
658
|
}
|
|
501
659
|
|
|
@@ -542,6 +700,10 @@ ${code}
|
|
|
542
700
|
});
|
|
543
701
|
`;
|
|
544
702
|
lineCount += 2;
|
|
703
|
+
if (_utils().debugTools['asset-file-names-in-output']) {
|
|
704
|
+
code = `/* ${this.getAssetFilePath(asset)} */\n` + code;
|
|
705
|
+
lineCount += 1;
|
|
706
|
+
}
|
|
545
707
|
for (let [depCode, map, lines] of depContent) {
|
|
546
708
|
if (!depCode) continue;
|
|
547
709
|
code += depCode + '\n';
|
|
@@ -583,7 +745,7 @@ ${code}
|
|
|
583
745
|
// Handle imports from other bundles in libraries.
|
|
584
746
|
if (this.bundle.env.isLibrary && !this.bundle.hasAsset(resolved)) {
|
|
585
747
|
let referencedBundle = this.bundleGraph.getReferencedBundle(dep, this.bundle);
|
|
586
|
-
if (referencedBundle && referencedBundle.getMainEntry() === resolved && referencedBundle.type === 'js' && !this.
|
|
748
|
+
if (referencedBundle && referencedBundle.getMainEntry() === resolved && referencedBundle.type === 'js' && !this.isAssetReferencedInBundle(referencedBundle, resolved)) {
|
|
587
749
|
this.addExternal(dep, replacements, referencedBundle);
|
|
588
750
|
this.externalAssets.add(resolved);
|
|
589
751
|
continue;
|
|
@@ -614,7 +776,7 @@ ${code}
|
|
|
614
776
|
|
|
615
777
|
// If this asset is wrapped, we need to replace the exports namespace with `module.exports`,
|
|
616
778
|
// which will be provided to us by the wrapper.
|
|
617
|
-
if (this.wrappedAssets.has(asset
|
|
779
|
+
if (this.wrappedAssets.has(asset) || this.bundle.env.outputFormat === 'commonjs' && asset === this.bundle.getMainEntry()) {
|
|
618
780
|
var _asset$symbols$get;
|
|
619
781
|
let exportsName = ((_asset$symbols$get = asset.symbols.get('*')) === null || _asset$symbols$get === void 0 ? void 0 : _asset$symbols$get.local) || `$${assetId}$exports`;
|
|
620
782
|
replacements.set(exportsName, 'module.exports');
|
|
@@ -648,6 +810,7 @@ ${code}
|
|
|
648
810
|
local
|
|
649
811
|
}] of dep.symbols) {
|
|
650
812
|
// If already imported, just add the already renamed variable to the mapping.
|
|
813
|
+
|
|
651
814
|
let renamed = external.get(imported);
|
|
652
815
|
if (renamed && local !== '*' && replacements) {
|
|
653
816
|
replacements.set(local, renamed);
|
|
@@ -711,7 +874,7 @@ ${code}
|
|
|
711
874
|
continue;
|
|
712
875
|
}
|
|
713
876
|
}
|
|
714
|
-
renamed = this.bundleGraph.getSymbolResolution(entry, imported, this.bundle).symbol;
|
|
877
|
+
renamed = this.bundleGraph.getSymbolResolution(entry, imported, this.bundle).symbol || undefined;
|
|
715
878
|
}
|
|
716
879
|
}
|
|
717
880
|
|
|
@@ -752,7 +915,7 @@ ${code}
|
|
|
752
915
|
}
|
|
753
916
|
return false;
|
|
754
917
|
}
|
|
755
|
-
return !this.bundle.hasAsset(resolved) && !this.externalAssets.has(resolved) || this.wrappedAssets.has(resolved
|
|
918
|
+
return !this.bundle.hasAsset(resolved) && !this.externalAssets.has(resolved) || this.wrappedAssets.has(resolved) && resolved !== parentAsset;
|
|
756
919
|
}
|
|
757
920
|
getSymbolResolution(parentAsset, resolved, imported, dep, replacements) {
|
|
758
921
|
let {
|
|
@@ -779,12 +942,12 @@ ${code}
|
|
|
779
942
|
// Only do this if the asset is part of a different bundle (so it was definitely
|
|
780
943
|
// parcelRequire.register'ed there), or if it is indeed registered in this bundle.
|
|
781
944
|
!this.bundle.hasAsset(resolvedAsset) || !this.shouldSkipAsset(resolvedAsset))) {
|
|
782
|
-
let hoisted = this.hoistedRequires.get(dep
|
|
945
|
+
let hoisted = this.hoistedRequires.get(dep);
|
|
783
946
|
if (!hoisted) {
|
|
784
947
|
hoisted = new Map();
|
|
785
|
-
this.hoistedRequires.set(dep
|
|
948
|
+
this.hoistedRequires.set(dep, hoisted);
|
|
786
949
|
}
|
|
787
|
-
hoisted.set(resolvedAsset
|
|
950
|
+
hoisted.set(resolvedAsset, `var $${publicId} = parcelRequire(${JSON.stringify(publicId)});`);
|
|
788
951
|
}
|
|
789
952
|
if (isWrapped) {
|
|
790
953
|
this.needsPrelude = true;
|
|
@@ -813,7 +976,7 @@ ${code}
|
|
|
813
976
|
}
|
|
814
977
|
if (imported === '*' || exportSymbol === '*' || isDefaultInterop) {
|
|
815
978
|
// Resolve to the namespace object if requested or this is a CJS default interop reqiure.
|
|
816
|
-
if (parentAsset === resolvedAsset && this.wrappedAssets.has(resolvedAsset
|
|
979
|
+
if (parentAsset === resolvedAsset && this.wrappedAssets.has(resolvedAsset)) {
|
|
817
980
|
// Directly use module.exports for wrapped assets importing themselves.
|
|
818
981
|
return 'module.exports';
|
|
819
982
|
} else {
|
|
@@ -832,7 +995,9 @@ ${code}
|
|
|
832
995
|
return this.getPropertyAccess(obj, exportSymbol);
|
|
833
996
|
}
|
|
834
997
|
} else if (!symbol) {
|
|
835
|
-
|
|
998
|
+
let parentPath = _path().default.relative(this.options.projectRoot, parentAsset.filePath) || '<unknown>';
|
|
999
|
+
let resolvedPath = _path().default.relative(this.options.projectRoot, resolvedAsset.filePath) || '<unknown>';
|
|
1000
|
+
(0, _assert().default)(false, `Asset was skipped or not found when packaging ${this.bundle.name}.\nSearching for exported symbol "${imported}" (resolved as "${exportSymbol}") in asset with id "${resolvedAsset.meta.id}" (public id: "${publicId}", path: "${resolvedPath}") from parent asset "${parentAsset.meta.id}" (path: "${parentPath}").`);
|
|
836
1001
|
} else {
|
|
837
1002
|
return (replacements === null || replacements === void 0 ? void 0 : replacements.get(symbol)) || symbol;
|
|
838
1003
|
}
|
|
@@ -841,7 +1006,7 @@ ${code}
|
|
|
841
1006
|
if (resolved.type !== 'js') {
|
|
842
1007
|
return ['', 0];
|
|
843
1008
|
}
|
|
844
|
-
let hoisted = this.hoistedRequires.get(dep
|
|
1009
|
+
let hoisted = this.hoistedRequires.get(dep);
|
|
845
1010
|
let res = '';
|
|
846
1011
|
let lineCount = 0;
|
|
847
1012
|
let isWrapped = this.isWrapped(resolved, parentAsset);
|
|
@@ -850,14 +1015,23 @@ ${code}
|
|
|
850
1015
|
// we need to run side effects when this asset runs. If the resolved asset is not
|
|
851
1016
|
// the first one in the hoisted requires, we need to insert a parcelRequire here
|
|
852
1017
|
// so it runs first.
|
|
853
|
-
if (isWrapped && !dep.meta.shouldWrap && (!hoisted || hoisted.keys().next().value !== resolved
|
|
1018
|
+
if (isWrapped && !dep.meta.shouldWrap && (!hoisted || hoisted.keys().next().value !== resolved) && !this.bundleGraph.isDependencySkipped(dep) && !this.shouldSkipAsset(resolved)) {
|
|
854
1019
|
this.needsPrelude = true;
|
|
855
1020
|
res += `parcelRequire(${JSON.stringify(this.bundleGraph.getAssetPublicId(resolved))});`;
|
|
856
1021
|
}
|
|
857
1022
|
if (hoisted) {
|
|
858
1023
|
this.needsPrelude = true;
|
|
859
|
-
|
|
860
|
-
|
|
1024
|
+
if ((0, _featureFlags().getFeatureFlag)('applyScopeHoistingImprovementV2')) {
|
|
1025
|
+
let hoistedValues = [...hoisted.values()].filter(val => !this.seenHoistedRequires.has(val));
|
|
1026
|
+
for (let val of hoistedValues) {
|
|
1027
|
+
this.seenHoistedRequires.add(val);
|
|
1028
|
+
}
|
|
1029
|
+
res += '\n' + hoistedValues.join('\n');
|
|
1030
|
+
lineCount += hoisted.size;
|
|
1031
|
+
} else {
|
|
1032
|
+
res += '\n' + [...hoisted.values()].join('\n');
|
|
1033
|
+
lineCount += hoisted.size;
|
|
1034
|
+
}
|
|
861
1035
|
}
|
|
862
1036
|
return [res, lineCount];
|
|
863
1037
|
}
|
|
@@ -865,7 +1039,7 @@ ${code}
|
|
|
865
1039
|
let prepend = '';
|
|
866
1040
|
let prependLineCount = 0;
|
|
867
1041
|
let append = '';
|
|
868
|
-
let shouldWrap = this.wrappedAssets.has(asset
|
|
1042
|
+
let shouldWrap = this.wrappedAssets.has(asset);
|
|
869
1043
|
let usedSymbols = (0, _nullthrows().default)(this.bundleGraph.getUsedSymbols(asset));
|
|
870
1044
|
let assetId = asset.meta.id;
|
|
871
1045
|
(0, _assert().default)(typeof assetId === 'string');
|
|
@@ -874,20 +1048,28 @@ ${code}
|
|
|
874
1048
|
// If there's no __esModule flag, and default is a used symbol, we need
|
|
875
1049
|
// to insert an interop helper.
|
|
876
1050
|
let defaultInterop = asset.symbols.hasExportSymbol('*') && usedSymbols.has('default') && !asset.symbols.hasExportSymbol('__esModule');
|
|
877
|
-
let usedNamespace
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
1051
|
+
let usedNamespace;
|
|
1052
|
+
if ((0, _featureFlags().getFeatureFlag)('inlineConstOptimisationFix') && asset.meta.isConstantModule) {
|
|
1053
|
+
// Only set usedNamespace if there is an incoming dependency in the current bundle that uses '*'
|
|
1054
|
+
usedNamespace = this.bundleGraph.getIncomingDependencies(asset).some(dep => this.bundle.hasDependency(dep) && (0, _nullthrows().default)(this.bundleGraph.getUsedSymbols(dep)).has('*'));
|
|
1055
|
+
} else {
|
|
1056
|
+
usedNamespace =
|
|
1057
|
+
// If the asset has * in its used symbols, we might need the exports namespace.
|
|
1058
|
+
// The one case where this isn't true is in ESM library entries, where the only
|
|
1059
|
+
// dependency on * is the entry dependency. In this case, we will use ESM exports
|
|
1060
|
+
// instead of the namespace object.
|
|
1061
|
+
|
|
1062
|
+
usedSymbols.has('*') && (this.bundle.env.outputFormat !== 'esmodule' || !this.bundle.env.isLibrary || asset !== this.bundle.getMainEntry() || this.bundleGraph.getIncomingDependencies(asset).some(dep => !dep.isEntry && this.bundle.hasDependency(dep) && (0, _nullthrows().default)(this.bundleGraph.getUsedSymbols(dep)).has('*'))) ||
|
|
1063
|
+
// If a symbol is imported (used) from a CJS asset but isn't listed in the symbols,
|
|
1064
|
+
// we fallback on the namespace object.
|
|
1065
|
+
|
|
1066
|
+
asset.symbols.hasExportSymbol('*') && [...usedSymbols].some(s => !asset.symbols.hasExportSymbol(s)) ||
|
|
1067
|
+
// If the exports has this asset's namespace (e.g. ESM output from CJS input),
|
|
1068
|
+
// include the namespace object for the default export.
|
|
1069
|
+
this.exportedSymbols.has(`$${assetId}$exports`) ||
|
|
1070
|
+
// CommonJS library bundle entries always need a namespace.
|
|
1071
|
+
this.bundle.env.isLibrary && this.bundle.env.outputFormat === 'commonjs' && asset === this.bundle.getMainEntry();
|
|
1072
|
+
}
|
|
891
1073
|
|
|
892
1074
|
// If the asset doesn't have static exports, should wrap, the namespace is used,
|
|
893
1075
|
// or we need default interop, then we need to synthesize a namespace object for
|
|
@@ -905,6 +1087,7 @@ ${code}
|
|
|
905
1087
|
// Insert the __esModule interop flag for this module if it has a `default` export
|
|
906
1088
|
// and the namespace symbol is used.
|
|
907
1089
|
// TODO: only if required by CJS?
|
|
1090
|
+
|
|
908
1091
|
if (asset.symbols.hasExportSymbol('default') && usedSymbols.has('*')) {
|
|
909
1092
|
prepend += `\n$parcel$defineInteropFlag($${assetId}$exports);\n`;
|
|
910
1093
|
prependLineCount += 2;
|
|
@@ -988,16 +1171,22 @@ ${code}
|
|
|
988
1171
|
// for the symbol so that when the value changes the object property also changes. This is
|
|
989
1172
|
// required to simulate ESM live bindings. It's easier to do it this way rather than inserting
|
|
990
1173
|
// additional assignments after each mutation of the original binding.
|
|
991
|
-
|
|
992
|
-
var _asset$symbols$get2;
|
|
1174
|
+
for (let exp of usedExports) {
|
|
1175
|
+
var _asset$symbols$get2, _this$manualStaticBin;
|
|
993
1176
|
let resolved = this.getSymbolResolution(asset, asset, exp, undefined, replacements);
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1177
|
+
const meta = (_asset$symbols$get2 = asset.symbols.get(exp)) === null || _asset$symbols$get2 === void 0 ? void 0 : _asset$symbols$get2.meta;
|
|
1178
|
+
if ((0, _featureFlags().getFeatureFlag)('exportsRebindingOptimisation') && (meta !== null && meta !== void 0 && meta.isStaticBindingSafe || (_this$manualStaticBin = this.manualStaticBindingExports) !== null && _this$manualStaticBin !== void 0 && _this$manualStaticBin.some(regex => regex.test(asset.filePath)))) {
|
|
1179
|
+
append += `$${assetId}$exports[${JSON.stringify(exp)}] = ${resolved};\n`;
|
|
1180
|
+
} else {
|
|
1181
|
+
var _asset$symbols$get3;
|
|
1182
|
+
let get = this.buildFunctionExpression([], resolved);
|
|
1183
|
+
let isEsmExport = !!((_asset$symbols$get3 = asset.symbols.get(exp)) !== null && _asset$symbols$get3 !== void 0 && (_asset$symbols$get3 = _asset$symbols$get3.meta) !== null && _asset$symbols$get3 !== void 0 && _asset$symbols$get3.isEsm);
|
|
1184
|
+
let set = !isEsmExport && asset.meta.hasCJSExports ? ', ' + this.buildFunctionExpression(['v'], `${resolved} = v`) : '';
|
|
1185
|
+
prepend += `$parcel$export($${assetId}$exports, ${JSON.stringify(exp)}, ${get}${set});\n`;
|
|
1186
|
+
this.usedHelpers.add('$parcel$export');
|
|
1187
|
+
prependLineCount += 1 + usedExports.length;
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1001
1190
|
}
|
|
1002
1191
|
}
|
|
1003
1192
|
return [prepend, prependLineCount, append];
|
|
@@ -1041,11 +1230,11 @@ ${code}
|
|
|
1041
1230
|
// Add the prelude if this is potentially the first JS bundle to load in a
|
|
1042
1231
|
// particular context (e.g. entry scripts in HTML, workers, etc.).
|
|
1043
1232
|
let parentBundles = this.bundleGraph.getParentBundles(this.bundle);
|
|
1044
|
-
let mightBeFirstJS = parentBundles.length === 0 || parentBundles.some(b => b.type !== 'js') || this.bundleGraph.getBundleGroupsContainingBundle(this.bundle).some(g => this.bundleGraph.isEntryBundleGroup(g)) || this.bundle.env.isIsolated() || this.bundle.bundleBehavior === 'isolated' ||
|
|
1233
|
+
let mightBeFirstJS = parentBundles.length === 0 || parentBundles.some(b => b.type !== 'js') || this.bundleGraph.getBundleGroupsContainingBundle(this.bundle).some(g => this.bundleGraph.isEntryBundleGroup(g)) || this.bundle.env.isIsolated() || this.bundle.bundleBehavior === 'isolated' || this.bundle.bundleBehavior === 'inlineIsolated' ||
|
|
1045
1234
|
// Conditional deps may be loaded before entrypoints on the server
|
|
1046
1235
|
this.hasConditionalDependency();
|
|
1047
1236
|
if (mightBeFirstJS) {
|
|
1048
|
-
let preludeCode = (0, _helpers.
|
|
1237
|
+
let preludeCode = ((0, _featureFlags().getFeatureFlag)('useNewPrelude') ? _helpers.preludeNew : _helpers.preludeOld)(this.parcelRequireName);
|
|
1049
1238
|
res += preludeCode;
|
|
1050
1239
|
if (enableSourceMaps) {
|
|
1051
1240
|
lines += (0, _utils().countLines)(preludeCode) - 1;
|
|
@@ -1068,7 +1257,7 @@ ${code}
|
|
|
1068
1257
|
}
|
|
1069
1258
|
|
|
1070
1259
|
// Add importScripts for sibling bundles in workers.
|
|
1071
|
-
if (this.bundle.env.isWorker() || this.bundle.env.isWorklet()) {
|
|
1260
|
+
if (this.bundle.env.isWorker() || this.bundle.env.isTesseract() || this.bundle.env.isWorklet()) {
|
|
1072
1261
|
let importScripts = '';
|
|
1073
1262
|
let bundles = this.bundleGraph.getReferencedBundles(this.bundle);
|
|
1074
1263
|
for (let b of bundles) {
|
|
@@ -1094,7 +1283,7 @@ ${code}
|
|
|
1094
1283
|
if (this.isScriptEntry(asset)) {
|
|
1095
1284
|
return true;
|
|
1096
1285
|
}
|
|
1097
|
-
return asset.sideEffects === false && (0, _nullthrows().default)(this.bundleGraph.getUsedSymbols(asset)).size == 0 && !this.
|
|
1286
|
+
return asset.sideEffects === false && (0, _nullthrows().default)(this.bundleGraph.getUsedSymbols(asset)).size == 0 && !this.isAssetReferencedInBundle(this.bundle, asset);
|
|
1098
1287
|
}
|
|
1099
1288
|
isScriptEntry(asset) {
|
|
1100
1289
|
return this.bundle.env.outputFormat === 'global' && this.bundle.env.sourceType === 'script' && asset === this.bundle.getMainEntry();
|