@shapeshift-labs/frontier-lang-compiler 0.2.123 → 0.2.124
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/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -303,6 +303,15 @@ incompatible ways. Parser-backed stage imports can be supplied with
|
|
|
303
303
|
lightweight scanner. This is a conservative admission gate only: results still
|
|
304
304
|
keep `autoMergeClaim: false` and `semanticEquivalenceClaim: false`.
|
|
305
305
|
|
|
306
|
+
Artifact-size and runtime note: these graph options are deliberately opt-in.
|
|
307
|
+
On a local Node v26.1.0 smoke fixture with 10 small JS/TS files and 36 scanned
|
|
308
|
+
stage files for the delta case, baseline project merge JSON was 115 KB at a
|
|
309
|
+
21.6 ms median. `includeOutputProjectSymbolGraph` raised the returned JSON to
|
|
310
|
+
17.8 MB at a 303.1 ms median, and `includeProjectGraphDelta` raised it to
|
|
311
|
+
83.0 MB at a 1,466.8 ms median. Keep these paths behind admission-queue caps
|
|
312
|
+
for file count, total source bytes, graph edge count, and serialized artifact
|
|
313
|
+
bytes, or expose summary/lazy graph materialization before using them broadly.
|
|
314
|
+
|
|
306
315
|
High-risk native features also have explicit evidence policies. These policies are advisory in this package: they tell a swarm or admission queue what evidence is missing without silently changing the existing readiness classification.
|
|
307
316
|
|
|
308
317
|
```js
|
package/package.json
CHANGED