@glissade/cli 0.56.0 → 0.57.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 +1 -3
- package/dist/fonts.js +1 -1
- package/dist/frameCache.js +1 -1
- package/dist/render.js +2 -1
- package/dist/verifyDeterminism.js +1 -1
- package/package.json +10 -10
package/dist/describeLint.js
CHANGED
|
@@ -38,6 +38,7 @@ const EXEMPT_INTERNALS = new Set([
|
|
|
38
38
|
"EXPR_CONSTANTS",
|
|
39
39
|
"EXPR_FUNCTIONS",
|
|
40
40
|
"IDENTITY",
|
|
41
|
+
"MAX_PARTICLE_COUNT",
|
|
41
42
|
"MEASURE_QUANTUM_PX",
|
|
42
43
|
"MESH_DOWNSCALE",
|
|
43
44
|
"MESH_SHEPARD_POWER",
|
|
@@ -102,8 +103,6 @@ const EXEMPT_INTERNALS = new Set([
|
|
|
102
103
|
"breakLines",
|
|
103
104
|
"childId",
|
|
104
105
|
"coercePathData",
|
|
105
|
-
"collectLocalizedTextUsages",
|
|
106
|
-
"collectTextUsages",
|
|
107
106
|
"cubicBezierDerivative",
|
|
108
107
|
"driftLoop",
|
|
109
108
|
"each",
|
|
@@ -153,7 +152,6 @@ const EXEMPT_INTERNALS = new Set([
|
|
|
153
152
|
"validateFilters",
|
|
154
153
|
"validateFonts",
|
|
155
154
|
"validateHachure",
|
|
156
|
-
"validateSceneFonts",
|
|
157
155
|
"validateSketch",
|
|
158
156
|
"vec2Equals",
|
|
159
157
|
"vec2Signal",
|
package/dist/fonts.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { o as loadSceneModule } from "./render.js";
|
|
2
2
|
import { readFile } from "node:fs/promises";
|
|
3
3
|
import { buildFontRegistry } from "@glissade/core";
|
|
4
|
-
import { collectTextUsages } from "@glissade/scene";
|
|
4
|
+
import { collectTextUsages } from "@glissade/scene/diagnostics";
|
|
5
5
|
//#region src/fonts.ts
|
|
6
6
|
/**
|
|
7
7
|
* gs fonts audit (DESIGN.md §3.6) — the font front-door report. Loads a scene
|
package/dist/frameCache.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { t as __exportAll } from "./rolldown-runtime.js";
|
|
2
2
|
import { closeSync, existsSync, mkdirSync, openSync, readFileSync, readSync, readdirSync, renameSync, rmSync, statSync, unlinkSync, utimesSync, writeFileSync } from "node:fs";
|
|
3
3
|
import { join } from "node:path";
|
|
4
|
-
import { createHash } from "node:crypto";
|
|
5
4
|
import { serializeDisplayList } from "@glissade/scene/diagnostics";
|
|
5
|
+
import { createHash } from "node:crypto";
|
|
6
6
|
import { deflateSync, inflateSync } from "node:zlib";
|
|
7
7
|
//#region src/frameCache.ts
|
|
8
8
|
/**
|
package/dist/render.js
CHANGED
|
@@ -9,7 +9,8 @@ import { pathToFileURL } from "node:url";
|
|
|
9
9
|
import { readFile } from "node:fs/promises";
|
|
10
10
|
import { createJiti } from "jiti";
|
|
11
11
|
import { buildFontRegistry } from "@glissade/core";
|
|
12
|
-
import {
|
|
12
|
+
import { evaluate, withDeterminismGuards } from "@glissade/scene";
|
|
13
|
+
import { collectLocalizedTextUsages, validateSceneFonts } from "@glissade/scene/diagnostics";
|
|
13
14
|
import { createHash } from "node:crypto";
|
|
14
15
|
import { SkiaBackend } from "@glissade/backend-skia";
|
|
15
16
|
//#region src/renderManifest.ts
|
|
@@ -5,8 +5,8 @@ import { isAbsolute, resolve } from "node:path";
|
|
|
5
5
|
import { pathToFileURL } from "node:url";
|
|
6
6
|
import { createJiti } from "jiti";
|
|
7
7
|
import { createDisplayListBuilder, evaluate, withDeterminismGuards } from "@glissade/scene";
|
|
8
|
-
import { createHash } from "node:crypto";
|
|
9
8
|
import { diffDisplayLists, formatDisplayDiff, serializeDisplayList } from "@glissade/scene/diagnostics";
|
|
9
|
+
import { createHash } from "node:crypto";
|
|
10
10
|
//#region src/verifyDeterminism.ts
|
|
11
11
|
/**
|
|
12
12
|
* gs verify-determinism (DESIGN.md §5.5/§5.6 §7): the cross-shard / cross-machine
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glissade/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.57.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.
|
|
32
|
-
"@glissade/core": "0.
|
|
33
|
-
"@glissade/interact": "0.
|
|
34
|
-
"@glissade/lottie": "0.
|
|
35
|
-
"@glissade/narrate": "0.
|
|
36
|
-
"@glissade/player": "0.
|
|
37
|
-
"@glissade/scene": "0.
|
|
38
|
-
"@glissade/sfx": "0.
|
|
39
|
-
"@glissade/svg": "0.
|
|
31
|
+
"@glissade/backend-skia": "0.57.0",
|
|
32
|
+
"@glissade/core": "0.57.0",
|
|
33
|
+
"@glissade/interact": "0.57.0",
|
|
34
|
+
"@glissade/lottie": "0.57.0",
|
|
35
|
+
"@glissade/narrate": "0.57.0",
|
|
36
|
+
"@glissade/player": "0.57.0",
|
|
37
|
+
"@glissade/scene": "0.57.0",
|
|
38
|
+
"@glissade/sfx": "0.57.0",
|
|
39
|
+
"@glissade/svg": "0.57.0"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|