@glissade/cli 0.60.0-pre.0 → 0.60.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/dist/describeLint.js +15 -6
- package/package.json +10 -10
package/dist/describeLint.js
CHANGED
|
@@ -156,12 +156,20 @@ const EXEMPT_INTERNALS = new Set([
|
|
|
156
156
|
"vec2Equals",
|
|
157
157
|
"vec2Signal",
|
|
158
158
|
"velocityAt",
|
|
159
|
-
"validateScene",
|
|
160
|
-
"resolveAt",
|
|
161
|
-
"instanceProps",
|
|
162
159
|
"DIAGNOSTIC_SCHEMA_VERSION",
|
|
163
|
-
"
|
|
164
|
-
"
|
|
160
|
+
"emitWithIds",
|
|
161
|
+
"diffDisplayLists",
|
|
162
|
+
"formatDisplayDiff",
|
|
163
|
+
"serializeDisplayList",
|
|
164
|
+
"parseDisplaySnapshot",
|
|
165
|
+
"DL_SNAPSHOT_VERSION",
|
|
166
|
+
"auditCacheCold",
|
|
167
|
+
"collectTextUsages",
|
|
168
|
+
"collectLocalizedTextUsages",
|
|
169
|
+
"validateSceneFonts",
|
|
170
|
+
"nearestId",
|
|
171
|
+
"levenshtein",
|
|
172
|
+
"sortDiagnostics"
|
|
165
173
|
]);
|
|
166
174
|
/**
|
|
167
175
|
* PATTERN-exempt runtime exports (no per-name entry needed): error classes
|
|
@@ -210,7 +218,7 @@ function describeLint(manifest, surface, opts = {}) {
|
|
|
210
218
|
const callables = /* @__PURE__ */ new Set();
|
|
211
219
|
for (const name of Object.keys(manifest.nodes)) callables.add(name);
|
|
212
220
|
for (const h of manifest.helpers) callables.add(h.name);
|
|
213
|
-
for (const e of manifest.surface ?? []) if (e.kind === "value" && (e.form === "constructor" || e.form === "function")) callables.add(e.name);
|
|
221
|
+
for (const e of manifest.surface ?? []) if ((e.kind === "value" || e.kind === "diagnostic") && (e.form === "constructor" || e.form === "function")) callables.add(e.name);
|
|
214
222
|
for (const name of [...callables].sort()) {
|
|
215
223
|
if (exempt.has(name) || isFn(name)) continue;
|
|
216
224
|
out.push(present(name) ? {
|
|
@@ -271,6 +279,7 @@ async function collectRuntimeSurface(manifest) {
|
|
|
271
279
|
"@glissade/core/clips",
|
|
272
280
|
"@glissade/scene",
|
|
273
281
|
"@glissade/scene/describe",
|
|
282
|
+
"@glissade/scene/diagnostics",
|
|
274
283
|
"@glissade/scene/layout-ctors",
|
|
275
284
|
"@glissade/scene/path"
|
|
276
285
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glissade/cli",
|
|
3
|
-
"version": "0.60.0
|
|
3
|
+
"version": "0.60.0",
|
|
4
4
|
"description": "glissade CLI: headless rendering via backend-skia (+ FFmpeg mux).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"engines": {
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"@napi-rs/canvas": "^0.1.65",
|
|
29
29
|
"esbuild": "0.28.0",
|
|
30
30
|
"jiti": "^2.4.2",
|
|
31
|
-
"@glissade/backend-skia": "0.60.0
|
|
32
|
-
"@glissade/core": "0.60.0
|
|
33
|
-
"@glissade/interact": "0.60.0
|
|
34
|
-
"@glissade/lottie": "0.60.0
|
|
35
|
-
"@glissade/narrate": "0.60.0
|
|
36
|
-
"@glissade/player": "0.60.0
|
|
37
|
-
"@glissade/scene": "0.60.0
|
|
38
|
-
"@glissade/sfx": "0.60.0
|
|
39
|
-
"@glissade/svg": "0.60.0
|
|
31
|
+
"@glissade/backend-skia": "0.60.0",
|
|
32
|
+
"@glissade/core": "0.60.0",
|
|
33
|
+
"@glissade/interact": "0.60.0",
|
|
34
|
+
"@glissade/lottie": "0.60.0",
|
|
35
|
+
"@glissade/narrate": "0.60.0",
|
|
36
|
+
"@glissade/player": "0.60.0",
|
|
37
|
+
"@glissade/scene": "0.60.0",
|
|
38
|
+
"@glissade/sfx": "0.60.0",
|
|
39
|
+
"@glissade/svg": "0.60.0"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|