@atlaspack/core 2.18.5 → 2.18.6-alshintegrationtestslib.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/AssetGraph.js +1 -1
- package/lib/AtlaspackConfig.schema.js +7 -1
- package/lib/BundleGraph.js +2 -0
- package/lib/Environment.js +1 -0
- package/lib/PackagerRunner.js +2 -1
- package/lib/RequestTracker.js +41 -36
- package/lib/Transformation.js +2 -2
- package/lib/atlaspack-v3/worker/compat/environment.js +2 -2
- package/lib/atlaspack-v3/worker/compat/mutable-asset.js +6 -6
- package/lib/atlaspack-v3/worker/compat/plugin-config.js +5 -5
- package/lib/atlaspack-v3/worker/index.js +3 -0
- package/lib/dumpGraphToGraphViz.js +1 -1
- package/lib/requests/AssetGraphRequestRust.js +17 -2
- package/lib/requests/DevDepRequest.js +3 -2
- package/lib/resolveOptions.js +3 -2
- package/lib/worker.js +18 -1
- package/package.json +21 -20
- package/src/AssetGraph.js +6 -2
- package/src/Environment.js +1 -1
- package/src/EnvironmentManager.js +1 -1
- package/src/atlaspack-v3/worker/index.js +2 -1
- package/src/public/MutableBundleGraph.js +3 -1
- package/src/requests/AssetGraphRequestRust.js +14 -2
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/AssetGraph.js
CHANGED
|
@@ -148,7 +148,7 @@ class AssetGraph extends _graph().ContentGraph {
|
|
|
148
148
|
let idAndContext = `${id}-${context}`;
|
|
149
149
|
let env = this.envCache.get(idAndContext);
|
|
150
150
|
if (env) {
|
|
151
|
-
input.env = env;
|
|
151
|
+
input.env = (0, _EnvironmentManager.toEnvironmentRef)(env);
|
|
152
152
|
} else {
|
|
153
153
|
this.envCache.set(idAndContext, (0, _EnvironmentManager.fromEnvironmentId)(input.env));
|
|
154
154
|
}
|
|
@@ -14,7 +14,13 @@ exports.validatePackageName = validatePackageName;
|
|
|
14
14
|
// * We do not care about package names
|
|
15
15
|
// * Validation makes interop between parcel/atlaspack confusing.
|
|
16
16
|
//
|
|
17
|
-
function validatePackageName(
|
|
17
|
+
function validatePackageName(
|
|
18
|
+
// eslint-disable-next-line no-unused-vars
|
|
19
|
+
pkg,
|
|
20
|
+
// eslint-disable-next-line no-unused-vars
|
|
21
|
+
pluginType,
|
|
22
|
+
// eslint-disable-next-line no-unused-vars
|
|
23
|
+
key) {}
|
|
18
24
|
const validatePluginName = (pluginType, key) => {
|
|
19
25
|
return val => {
|
|
20
26
|
// allow plugin spread...
|
package/lib/BundleGraph.js
CHANGED
|
@@ -867,6 +867,7 @@ class BundleGraph {
|
|
|
867
867
|
if (bundleHasReference(descendant)) {
|
|
868
868
|
isReferenced = true;
|
|
869
869
|
actions.stop();
|
|
870
|
+
return;
|
|
870
871
|
}
|
|
871
872
|
}, referencer);
|
|
872
873
|
return isReferenced;
|
|
@@ -925,6 +926,7 @@ class BundleGraph {
|
|
|
925
926
|
let childBundles = this.getBundlesInBundleGroup(node.value);
|
|
926
927
|
if (childBundles.some(b => b.id !== bundle.id && b.bundleBehavior !== _types.BundleBehavior.isolated && b.bundleBehavior !== _types.BundleBehavior.inline && this.bundleHasAsset(b, asset))) {
|
|
927
928
|
actions.skipChildren();
|
|
929
|
+
return;
|
|
928
930
|
}
|
|
929
931
|
}
|
|
930
932
|
}, [bundleGraphEdgeTypes.references, bundleGraphEdgeTypes.bundle]);
|
package/lib/Environment.js
CHANGED
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.createEnvironment = createEnvironment;
|
|
7
|
+
exports.getEnvironmentHash = getEnvironmentHash;
|
|
7
8
|
exports.mergeEnvironments = mergeEnvironments;
|
|
8
9
|
function _rust() {
|
|
9
10
|
const data = require("@atlaspack/rust");
|
package/lib/PackagerRunner.js
CHANGED
|
@@ -413,9 +413,10 @@ class PackagerRunner {
|
|
|
413
413
|
inlineSources = this.options.mode === 'production';
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
+
let mapFilename = fullPath + '.map';
|
|
416
417
|
let isInlineMap = bundleEnv.sourceMap && bundleEnv.sourceMap.inline;
|
|
417
418
|
let stringified = await map.stringify({
|
|
418
|
-
file: _path().default.basename(
|
|
419
|
+
file: _path().default.basename(mapFilename),
|
|
419
420
|
// $FlowFixMe
|
|
420
421
|
fs: this.options.inputFS,
|
|
421
422
|
rootDir: this.options.projectRoot,
|
package/lib/RequestTracker.js
CHANGED
|
@@ -722,7 +722,8 @@ class RequestGraph extends _graph().ContentGraph {
|
|
|
722
722
|
}
|
|
723
723
|
}
|
|
724
724
|
const invalidationsAfter = this.getInvalidNodeCount();
|
|
725
|
-
|
|
725
|
+
const invalidationsForEvent = invalidationsAfter - invalidationsBefore;
|
|
726
|
+
invalidationsByPath.set(_path, (invalidationsByPath.get(_path) ?? 0) + invalidationsForEvent);
|
|
726
727
|
}
|
|
727
728
|
if ((0, _featureFlags().getFeatureFlag)('fixQuadraticCacheInvalidation')) {
|
|
728
729
|
cleanUpOrphans(this);
|
|
@@ -962,40 +963,41 @@ class RequestTracker {
|
|
|
962
963
|
}
|
|
963
964
|
createAPI(requestId, previousInvalidations) {
|
|
964
965
|
let subRequestContentKeys = new Set();
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
storeResult
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
return true;
|
|
991
|
-
}
|
|
992
|
-
return false;
|
|
993
|
-
},
|
|
994
|
-
runRequest: (subRequest, opts) => {
|
|
995
|
-
subRequestContentKeys.add(subRequest.id);
|
|
996
|
-
return this.runRequest(subRequest, opts);
|
|
966
|
+
let api = {
|
|
967
|
+
invalidateOnFileCreate: input => this.graph.invalidateOnFileCreate(requestId, input),
|
|
968
|
+
invalidateOnConfigKeyChange: (filePath, configKey, contentHash) => this.graph.invalidateOnConfigKeyChange(requestId, filePath, configKey, contentHash),
|
|
969
|
+
invalidateOnFileDelete: filePath => this.graph.invalidateOnFileDelete(requestId, filePath),
|
|
970
|
+
invalidateOnFileUpdate: filePath => this.graph.invalidateOnFileUpdate(requestId, filePath),
|
|
971
|
+
invalidateOnStartup: () => this.graph.invalidateOnStartup(requestId),
|
|
972
|
+
invalidateOnBuild: () => this.graph.invalidateOnBuild(requestId),
|
|
973
|
+
invalidateOnEnvChange: env => this.graph.invalidateOnEnvChange(requestId, env, this.options.env[env]),
|
|
974
|
+
invalidateOnOptionChange: option => this.graph.invalidateOnOptionChange(requestId, option, this.options[option]),
|
|
975
|
+
getInvalidations: () => previousInvalidations,
|
|
976
|
+
storeResult: (result, cacheKey) => {
|
|
977
|
+
this.storeResult(requestId, result, cacheKey);
|
|
978
|
+
},
|
|
979
|
+
getSubRequests: () => this.graph.getSubRequests(requestId),
|
|
980
|
+
getInvalidSubRequests: () => this.graph.getInvalidSubRequests(requestId),
|
|
981
|
+
getPreviousResult: ifMatch => {
|
|
982
|
+
var _this$graph$getNode;
|
|
983
|
+
let contentKey = (0, _nullthrows().default)((_this$graph$getNode = this.graph.getNode(requestId)) === null || _this$graph$getNode === void 0 ? void 0 : _this$graph$getNode.id);
|
|
984
|
+
return this.getRequestResult(contentKey, ifMatch);
|
|
985
|
+
},
|
|
986
|
+
getRequestResult: id => this.getRequestResult(id),
|
|
987
|
+
canSkipSubrequest: contentKey => {
|
|
988
|
+
if (this.graph.hasContentKey(contentKey) && this.hasValidResult(this.graph.getNodeIdByContentKey(contentKey))) {
|
|
989
|
+
subRequestContentKeys.add(contentKey);
|
|
990
|
+
return true;
|
|
997
991
|
}
|
|
992
|
+
return false;
|
|
998
993
|
},
|
|
994
|
+
runRequest: (subRequest, opts) => {
|
|
995
|
+
subRequestContentKeys.add(subRequest.id);
|
|
996
|
+
return this.runRequest(subRequest, opts);
|
|
997
|
+
}
|
|
998
|
+
};
|
|
999
|
+
return {
|
|
1000
|
+
api,
|
|
999
1001
|
subRequestContentKeys
|
|
1000
1002
|
};
|
|
1001
1003
|
}
|
|
@@ -1147,7 +1149,8 @@ function getWatcherOptions({
|
|
|
1147
1149
|
watchDir,
|
|
1148
1150
|
watchBackend
|
|
1149
1151
|
}) {
|
|
1150
|
-
const
|
|
1152
|
+
const vcsDirs = ['.git', '.hg'];
|
|
1153
|
+
const uniqueDirs = [...new Set([...watchIgnore, ...vcsDirs, cacheDir])];
|
|
1151
1154
|
const ignore = uniqueDirs.map(dir => _path2().default.resolve(watchDir, dir));
|
|
1152
1155
|
return {
|
|
1153
1156
|
ignore,
|
|
@@ -1341,13 +1344,15 @@ async function invalidateRequestGraph(requestGraph, options, events) {
|
|
|
1341
1344
|
const invalidatedCount = invalidations.reduce((acc, invalidation) => acc + invalidation.count, 0);
|
|
1342
1345
|
const requestCount = requestGraph.nodes.reduce((acc, node) => acc + ((node === null || node === void 0 ? void 0 : node.type) === REQUEST ? 1 : 0), 0);
|
|
1343
1346
|
const nodeCount = requestGraph.nodes.length;
|
|
1347
|
+
const nodeInvalidationRatio = invalidatedCount / nodeCount;
|
|
1348
|
+
const requestInvalidationRatio = invalidatedCount / requestCount;
|
|
1344
1349
|
return {
|
|
1345
1350
|
invalidations,
|
|
1346
1351
|
nodeCount,
|
|
1347
1352
|
requestCount,
|
|
1348
1353
|
invalidatedCount,
|
|
1349
|
-
nodeInvalidationRatio
|
|
1350
|
-
requestInvalidationRatio
|
|
1354
|
+
nodeInvalidationRatio,
|
|
1355
|
+
requestInvalidationRatio
|
|
1351
1356
|
};
|
|
1352
1357
|
}
|
|
1353
1358
|
/**
|
package/lib/Transformation.js
CHANGED
|
@@ -173,12 +173,12 @@ class Transformation {
|
|
|
173
173
|
});
|
|
174
174
|
|
|
175
175
|
// Prefer `isSource` originating from the AssetRequest.
|
|
176
|
-
|
|
176
|
+
let isSource = isSourceOverride ?? summarizedIsSource;
|
|
177
177
|
return new _UncommittedAsset.default({
|
|
178
178
|
value: (0, _assetUtils.createAsset)(this.options.projectRoot, {
|
|
179
179
|
code,
|
|
180
180
|
filePath,
|
|
181
|
-
isSource
|
|
181
|
+
isSource,
|
|
182
182
|
type: _path().default.extname((0, _projectPath.fromProjectPathRelative)(filePath)).slice(1),
|
|
183
183
|
pipeline,
|
|
184
184
|
env,
|
|
@@ -44,13 +44,13 @@ class Environment {
|
|
|
44
44
|
|
|
45
45
|
// TODO
|
|
46
46
|
// eslint-disable-next-line no-unused-vars
|
|
47
|
-
matchesEngines() {
|
|
47
|
+
matchesEngines(minVersions, defaultValue) {
|
|
48
48
|
return true;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
// TODO
|
|
52
52
|
// eslint-disable-next-line no-unused-vars
|
|
53
|
-
supports() {
|
|
53
|
+
supports(feature, defaultValue) {
|
|
54
54
|
return true;
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -126,32 +126,32 @@ class MutableAsset {
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
// eslint-disable-next-line no-unused-vars
|
|
129
|
-
addDependency() {
|
|
129
|
+
addDependency(options) {
|
|
130
130
|
throw new Error('MutableAsset.addDependency()');
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
// eslint-disable-next-line no-unused-vars
|
|
134
|
-
addURLDependency() {
|
|
134
|
+
addURLDependency(url, opts) {
|
|
135
135
|
throw new Error('MutableAsset.addURLDependency()');
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
// eslint-disable-next-line no-unused-vars
|
|
139
|
-
setEnvironment() {
|
|
139
|
+
setEnvironment(opts) {
|
|
140
140
|
throw new Error('MutableAsset.setEnvironment()');
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
// eslint-disable-next-line no-unused-vars
|
|
144
|
-
invalidateOnFileChange() {
|
|
144
|
+
invalidateOnFileChange(invalidation) {
|
|
145
145
|
// TODO: Forward invalidations to Rust
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
// eslint-disable-next-line no-unused-vars
|
|
149
|
-
invalidateOnFileCreate() {
|
|
149
|
+
invalidateOnFileCreate(invalidation) {
|
|
150
150
|
// TODO: Forward invalidations to Rust
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
// eslint-disable-next-line no-unused-vars
|
|
154
|
-
invalidateOnEnvChange() {
|
|
154
|
+
invalidateOnEnvChange(invalidation) {
|
|
155
155
|
// TODO: Forward invalidations to Rust
|
|
156
156
|
}
|
|
157
157
|
invalidateOnStartup() {
|
|
@@ -40,21 +40,21 @@ class PluginConfig {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
// eslint-disable-next-line no-unused-vars
|
|
43
|
-
invalidateOnFileChange() {}
|
|
43
|
+
invalidateOnFileChange(filePath) {}
|
|
44
44
|
|
|
45
45
|
// eslint-disable-next-line no-unused-vars
|
|
46
|
-
invalidateOnFileCreate() {}
|
|
46
|
+
invalidateOnFileCreate(invalidations) {}
|
|
47
47
|
|
|
48
48
|
// eslint-disable-next-line no-unused-vars
|
|
49
|
-
invalidateOnEnvChange() {}
|
|
49
|
+
invalidateOnEnvChange(invalidation) {}
|
|
50
50
|
invalidateOnStartup() {}
|
|
51
51
|
invalidateOnBuild() {}
|
|
52
52
|
|
|
53
53
|
// eslint-disable-next-line no-unused-vars
|
|
54
|
-
addDevDependency() {}
|
|
54
|
+
addDevDependency(options) {}
|
|
55
55
|
|
|
56
56
|
// eslint-disable-next-line no-unused-vars
|
|
57
|
-
setCacheKey() {}
|
|
57
|
+
setCacheKey(key) {}
|
|
58
58
|
getConfig(
|
|
59
59
|
// eslint-disable-next-line no-unused-vars
|
|
60
60
|
filePaths,
|
|
@@ -47,7 +47,7 @@ const TYPE_COLORS = {
|
|
|
47
47
|
};
|
|
48
48
|
async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
49
49
|
var _globalThis$ATLASPACK;
|
|
50
|
-
if (
|
|
50
|
+
if (process.env.ATLASPACK_BUILD_ENV === 'production' && !process.env.ATLASPACK_BUILD_REPL) {
|
|
51
51
|
return;
|
|
52
52
|
}
|
|
53
53
|
let mode = process.env.ATLASPACK_BUILD_REPL ? // $FlowFixMe
|
|
@@ -26,9 +26,18 @@ function _logger() {
|
|
|
26
26
|
};
|
|
27
27
|
return data;
|
|
28
28
|
}
|
|
29
|
+
function _featureFlags() {
|
|
30
|
+
const data = require("@atlaspack/feature-flags");
|
|
31
|
+
_featureFlags = function () {
|
|
32
|
+
return data;
|
|
33
|
+
};
|
|
34
|
+
return data;
|
|
35
|
+
}
|
|
29
36
|
var _AssetGraph = _interopRequireWildcard(require("../AssetGraph"));
|
|
30
37
|
var _RequestTracker = require("../RequestTracker");
|
|
31
38
|
var _SymbolPropagation = require("../SymbolPropagation");
|
|
39
|
+
var _EnvironmentManager = require("../EnvironmentManager");
|
|
40
|
+
var _Environment = require("../Environment");
|
|
32
41
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
33
42
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
34
43
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -137,8 +146,11 @@ function getAssetGraph(serializedGraph) {
|
|
|
137
146
|
let id = asset.id;
|
|
138
147
|
asset.committed = true;
|
|
139
148
|
asset.contentKey = id;
|
|
140
|
-
asset.env.id =
|
|
149
|
+
asset.env.id = (0, _featureFlags().getFeatureFlag)('environmentDeduplication') ?
|
|
150
|
+
// TODO: Rust can do this and avoid copying a significant amount of data over
|
|
151
|
+
(0, _Environment.getEnvironmentHash)(asset.env) : getEnvId(asset.env);
|
|
141
152
|
asset.mapKey = `map:${asset.id}`;
|
|
153
|
+
asset.env = (0, _EnvironmentManager.toEnvironmentRef)(asset.env);
|
|
142
154
|
|
|
143
155
|
// This is populated later when we map the edges between assets and dependencies
|
|
144
156
|
asset.dependencies = new Map();
|
|
@@ -162,7 +174,10 @@ function getAssetGraph(serializedGraph) {
|
|
|
162
174
|
let id = node.value.id;
|
|
163
175
|
let dependency = node.value.dependency;
|
|
164
176
|
dependency.id = id;
|
|
165
|
-
dependency.env.id =
|
|
177
|
+
dependency.env.id = (0, _featureFlags().getFeatureFlag)('environmentDeduplication') ?
|
|
178
|
+
// TODO: Rust can do this and avoid copying a significant amount of data over
|
|
179
|
+
(0, _Environment.getEnvironmentHash)(dependency.env) : getEnvId(dependency.env);
|
|
180
|
+
dependency.env = (0, _EnvironmentManager.toEnvironmentRef)(dependency.env);
|
|
166
181
|
if (dependency.symbols != null) {
|
|
167
182
|
var _dependency$symbols;
|
|
168
183
|
dependency.symbols = new Map((_dependency$symbols = dependency.symbols) === null || _dependency$symbols === void 0 ? void 0 : _dependency$symbols.map(mapSymbols));
|
|
@@ -96,7 +96,7 @@ async function createDevDependency(opts, requestDevDeps, options) {
|
|
|
96
96
|
return devDepRequest;
|
|
97
97
|
}
|
|
98
98
|
async function getDevDepRequests(api) {
|
|
99
|
-
|
|
99
|
+
async function getPreviousDevDepRequests() {
|
|
100
100
|
if ((0, _featureFlags().getFeatureFlag)('fixBuildAbortCorruption')) {
|
|
101
101
|
const allDevDepRequests = await Promise.all(api.getSubRequests().filter(req => req.requestType === _RequestTracker.requestTypes.dev_dep_request).map(async req => [req.id, await api.getRequestResult(req.id)]));
|
|
102
102
|
const nonNullDevDepRequests = [];
|
|
@@ -109,7 +109,8 @@ async function getDevDepRequests(api) {
|
|
|
109
109
|
} else {
|
|
110
110
|
return new Map(await Promise.all(api.getSubRequests().filter(req => req.requestType === _RequestTracker.requestTypes.dev_dep_request).map(async req => [req.id, (0, _nullthrows().default)(await api.getRequestResult(req.id))])));
|
|
111
111
|
}
|
|
112
|
-
}
|
|
112
|
+
}
|
|
113
|
+
const previousDevDepRequests = await getPreviousDevDepRequests();
|
|
113
114
|
return {
|
|
114
115
|
devDeps: new Map([...previousDevDepRequests.entries()].filter(([id]) => api.canSkipSubrequest(id)).map(([, req]) => [`${req.specifier}:${(0, _projectPath.fromProjectPathRelative)(req.resolveFrom)}`, req.hash])),
|
|
115
116
|
invalidDevDeps: await Promise.all([...previousDevDepRequests.entries()].filter(([id]) => !api.canSkipSubrequest(id)).flatMap(([, req]) => {
|
package/lib/resolveOptions.js
CHANGED
|
@@ -139,7 +139,7 @@ async function resolveOptions(initialOptions) {
|
|
|
139
139
|
// where symlinked dependencies outside the project root need to trigger HMR
|
|
140
140
|
// updates. Default to the project root if not provided.
|
|
141
141
|
let watchDir = initialOptions.watchDir != null ? _path().default.resolve(initialOptions.watchDir) : projectRoot;
|
|
142
|
-
|
|
142
|
+
function createCache() {
|
|
143
143
|
if (initialOptions.cache) {
|
|
144
144
|
return initialOptions.cache;
|
|
145
145
|
}
|
|
@@ -150,7 +150,8 @@ async function resolveOptions(initialOptions) {
|
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
152
|
return new (_cache().LMDBLiteCache)(cacheDir);
|
|
153
|
-
}
|
|
153
|
+
}
|
|
154
|
+
let cache = createCache();
|
|
154
155
|
let mode = initialOptions.mode ?? 'development';
|
|
155
156
|
let shouldOptimize = (initialOptions === null || initialOptions === void 0 || (_initialOptions$defau = initialOptions.defaultTargetOptions) === null || _initialOptions$defau === void 0 ? void 0 : _initialOptions$defau.shouldOptimize) ?? mode === 'production';
|
|
156
157
|
let publicUrl = (initialOptions === null || initialOptions === void 0 || (_initialOptions$defau2 = initialOptions.defaultTargetOptions) === null || _initialOptions$defau2 === void 0 ? void 0 : _initialOptions$defau2.publicUrl) ?? '/';
|
package/lib/worker.js
CHANGED
|
@@ -172,7 +172,24 @@ async function childInit() {
|
|
|
172
172
|
await (_rust().init === null || _rust().init === void 0 ? void 0 : (0, _rust().init)());
|
|
173
173
|
}
|
|
174
174
|
const PKG_RE = /node_modules[/\\]((?:@[^/\\]+[/\\][^/\\]+)|[^/\\]+)(?!.*[/\\]node_modules[/\\])/;
|
|
175
|
-
function invalidateRequireCache() {
|
|
175
|
+
function invalidateRequireCache(workerApi, file) {
|
|
176
|
+
if (process.env.ATLASPACK_BUILD_ENV === 'test') {
|
|
177
|
+
// Delete this module and all children in the same node_modules folder
|
|
178
|
+
let module = require.cache[file];
|
|
179
|
+
if (module) {
|
|
180
|
+
var _file$match;
|
|
181
|
+
delete require.cache[file];
|
|
182
|
+
let pkg = (_file$match = file.match(PKG_RE)) === null || _file$match === void 0 ? void 0 : _file$match[1];
|
|
183
|
+
for (let child of module.children) {
|
|
184
|
+
var _child$id$match;
|
|
185
|
+
if (pkg === ((_child$id$match = child.id.match(PKG_RE)) === null || _child$id$match === void 0 ? void 0 : _child$id$match[1])) {
|
|
186
|
+
invalidateRequireCache(workerApi, child.id);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
atlaspackConfigCache.clear();
|
|
191
|
+
return;
|
|
192
|
+
}
|
|
176
193
|
throw new Error('invalidateRequireCache is only for tests');
|
|
177
194
|
}
|
|
178
195
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/core",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.6-alshintegrationtestslib.0",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
"check-ts": "tsc --noEmit index.d.ts"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
+
"@atlaspack/build-cache": "2.13.4-alshintegrationtestslib.0",
|
|
25
|
+
"@atlaspack/cache": "3.2.10-alshintegrationtestslib.0",
|
|
26
|
+
"@atlaspack/diagnostic": "2.14.2-alshintegrationtestslib.0",
|
|
27
|
+
"@atlaspack/events": "2.14.2-alshintegrationtestslib.0",
|
|
28
|
+
"@atlaspack/feature-flags": "2.18.3-alshintegrationtestslib.0",
|
|
29
|
+
"@atlaspack/fs": "2.15.10-alshintegrationtestslib.0",
|
|
30
|
+
"@atlaspack/graph": "3.5.5-alshintegrationtestslib.0",
|
|
31
|
+
"@atlaspack/logger": "2.14.12-alshintegrationtestslib.0",
|
|
32
|
+
"@atlaspack/package-manager": "2.14.15-alshintegrationtestslib.0",
|
|
33
|
+
"@atlaspack/plugin": "2.14.15-alshintegrationtestslib.0",
|
|
34
|
+
"@atlaspack/profiler": "2.14.13-alshintegrationtestslib.0",
|
|
35
|
+
"@atlaspack/rust": "3.3.6-alshintegrationtestslib.0",
|
|
36
|
+
"@atlaspack/types": "2.15.5-alshintegrationtestslib.0",
|
|
37
|
+
"@atlaspack/utils": "2.15.3-alshintegrationtestslib.0",
|
|
38
|
+
"@atlaspack/workers": "2.14.15-alshintegrationtestslib.0",
|
|
24
39
|
"@mischnic/json-sourcemap": "^0.1.0",
|
|
25
|
-
"@atlaspack/build-cache": "2.13.3",
|
|
26
|
-
"@atlaspack/cache": "3.2.9",
|
|
27
|
-
"@atlaspack/diagnostic": "2.14.1",
|
|
28
|
-
"@atlaspack/events": "2.14.1",
|
|
29
|
-
"@atlaspack/feature-flags": "2.18.2",
|
|
30
|
-
"@atlaspack/fs": "2.15.9",
|
|
31
|
-
"@atlaspack/graph": "3.5.4",
|
|
32
|
-
"@atlaspack/logger": "2.14.11",
|
|
33
|
-
"@atlaspack/package-manager": "2.14.14",
|
|
34
|
-
"@atlaspack/plugin": "2.14.14",
|
|
35
|
-
"@atlaspack/profiler": "2.14.12",
|
|
36
|
-
"@atlaspack/rust": "3.3.5",
|
|
37
|
-
"@atlaspack/types": "2.15.4",
|
|
38
|
-
"@atlaspack/utils": "2.15.2",
|
|
39
|
-
"@atlaspack/workers": "2.14.14",
|
|
40
40
|
"@parcel/source-map": "^2.1.1",
|
|
41
41
|
"base-x": "^3.0.8",
|
|
42
42
|
"browserslist": "^4.6.6",
|
|
@@ -49,15 +49,16 @@
|
|
|
49
49
|
"semver": "^7.5.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@atlaspack/babel-register": "2.14.
|
|
52
|
+
"@atlaspack/babel-register": "2.14.2-alshintegrationtestslib.0",
|
|
53
53
|
"@types/node": ">= 18",
|
|
54
|
-
"rfdc": "1",
|
|
55
|
-
"jest-diff": "*",
|
|
56
54
|
"graphviz": "^0.0.9",
|
|
55
|
+
"jest-diff": "*",
|
|
56
|
+
"rfdc": "1",
|
|
57
57
|
"tempy": "^0.2.1"
|
|
58
58
|
},
|
|
59
59
|
"browser": {
|
|
60
60
|
"./src/serializerCore.js": "./src/serializerCore.browser.js"
|
|
61
61
|
},
|
|
62
|
-
"type": "commonjs"
|
|
62
|
+
"type": "commonjs",
|
|
63
|
+
"gitHead": "f6a68fdf5e9837f1040a7ea71443212a6f62ee5b"
|
|
63
64
|
}
|
package/src/AssetGraph.js
CHANGED
|
@@ -29,7 +29,11 @@ import nullthrows from 'nullthrows';
|
|
|
29
29
|
import {ContentGraph} from '@atlaspack/graph';
|
|
30
30
|
import {createDependency} from './Dependency';
|
|
31
31
|
import {type ProjectPath, fromProjectPathRelative} from './projectPath';
|
|
32
|
-
import {
|
|
32
|
+
import {
|
|
33
|
+
fromEnvironmentId,
|
|
34
|
+
toEnvironmentId,
|
|
35
|
+
toEnvironmentRef,
|
|
36
|
+
} from './EnvironmentManager';
|
|
33
37
|
import {getFeatureFlag} from '@atlaspack/feature-flags';
|
|
34
38
|
|
|
35
39
|
type InitOpts = {|
|
|
@@ -160,7 +164,7 @@ export default class AssetGraph extends ContentGraph<AssetGraphNode> {
|
|
|
160
164
|
|
|
161
165
|
let env = this.envCache.get(idAndContext);
|
|
162
166
|
if (env) {
|
|
163
|
-
input.env = env;
|
|
167
|
+
input.env = toEnvironmentRef(env);
|
|
164
168
|
} else {
|
|
165
169
|
this.envCache.set(idAndContext, fromEnvironmentId(input.env));
|
|
166
170
|
}
|
package/src/Environment.js
CHANGED
|
@@ -21,7 +21,7 @@ export opaque type EnvironmentId = string;
|
|
|
21
21
|
/**
|
|
22
22
|
* When deduplication is cleaned-up this will always be a string.
|
|
23
23
|
*/
|
|
24
|
-
export type EnvironmentRef = EnvironmentId | CoreEnvironment;
|
|
24
|
+
export opaque type EnvironmentRef = EnvironmentId | CoreEnvironment;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* Convert environment to a ref.
|
|
@@ -11,6 +11,7 @@ import type {
|
|
|
11
11
|
} from '@atlaspack/types';
|
|
12
12
|
import type {
|
|
13
13
|
AtlaspackOptions,
|
|
14
|
+
BundleGraphNode,
|
|
14
15
|
BundleGroup as InternalBundleGroup,
|
|
15
16
|
BundleNode,
|
|
16
17
|
} from '../types';
|
|
@@ -207,7 +208,8 @@ export default class MutableBundleGraph
|
|
|
207
208
|
bundleBehavior: opts.bundleBehavior ?? null,
|
|
208
209
|
});
|
|
209
210
|
|
|
210
|
-
let existing =
|
|
211
|
+
let existing: ?BundleGraphNode =
|
|
212
|
+
this.#graph._graph.getNodeByContentKey(bundleId);
|
|
211
213
|
if (existing != null) {
|
|
212
214
|
invariant(existing.type === 'bundle');
|
|
213
215
|
return Bundle.get(existing.value, this.#graph, this.#options);
|
|
@@ -5,6 +5,7 @@ import invariant from 'assert';
|
|
|
5
5
|
import ThrowableDiagnostic from '@atlaspack/diagnostic';
|
|
6
6
|
import type {Async} from '@atlaspack/types';
|
|
7
7
|
import {instrument} from '@atlaspack/logger';
|
|
8
|
+
import {getFeatureFlag} from '@atlaspack/feature-flags';
|
|
8
9
|
|
|
9
10
|
import AssetGraph, {nodeFromAssetGroup} from '../AssetGraph';
|
|
10
11
|
import type {AtlaspackV3} from '../atlaspack-v3';
|
|
@@ -16,6 +17,8 @@ import type {
|
|
|
16
17
|
AssetGraphRequestInput,
|
|
17
18
|
AssetGraphRequestResult,
|
|
18
19
|
} from './AssetGraphRequest';
|
|
20
|
+
import {toEnvironmentRef} from '../EnvironmentManager';
|
|
21
|
+
import {getEnvironmentHash} from '../Environment';
|
|
19
22
|
|
|
20
23
|
type RunInput = {|
|
|
21
24
|
input: AssetGraphRequestInput,
|
|
@@ -166,9 +169,14 @@ export function getAssetGraph(serializedGraph: any): {
|
|
|
166
169
|
|
|
167
170
|
asset.committed = true;
|
|
168
171
|
asset.contentKey = id;
|
|
169
|
-
asset.env.id =
|
|
172
|
+
asset.env.id = getFeatureFlag('environmentDeduplication')
|
|
173
|
+
? // TODO: Rust can do this and avoid copying a significant amount of data over
|
|
174
|
+
getEnvironmentHash(asset.env)
|
|
175
|
+
: getEnvId(asset.env);
|
|
170
176
|
asset.mapKey = `map:${asset.id}`;
|
|
171
177
|
|
|
178
|
+
asset.env = toEnvironmentRef(asset.env);
|
|
179
|
+
|
|
172
180
|
// This is populated later when we map the edges between assets and dependencies
|
|
173
181
|
asset.dependencies = new Map();
|
|
174
182
|
|
|
@@ -195,7 +203,11 @@ export function getAssetGraph(serializedGraph: any): {
|
|
|
195
203
|
let dependency = node.value.dependency;
|
|
196
204
|
|
|
197
205
|
dependency.id = id;
|
|
198
|
-
dependency.env.id =
|
|
206
|
+
dependency.env.id = getFeatureFlag('environmentDeduplication')
|
|
207
|
+
? // TODO: Rust can do this and avoid copying a significant amount of data over
|
|
208
|
+
getEnvironmentHash(dependency.env)
|
|
209
|
+
: getEnvId(dependency.env);
|
|
210
|
+
dependency.env = toEnvironmentRef(dependency.env);
|
|
199
211
|
|
|
200
212
|
if (dependency.symbols != null) {
|
|
201
213
|
dependency.symbols = new Map(dependency.symbols?.map(mapSymbols));
|