@hyperframes/studio-server 0.8.46 → 0.8.47
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -962,10 +962,10 @@ var GSAP_WRITER_MIGRATION = Object.freeze({
|
|
|
962
962
|
flag: "HYPERFRAMES_GSAP_WRITER",
|
|
963
963
|
owner: "studio-foundations",
|
|
964
964
|
deadline: "2026-09-30",
|
|
965
|
-
graduationCriteria: "
|
|
965
|
+
graduationCriteria: "Acorn is the default writer. Recast is retained one watch window as HYPERFRAMES_GSAP_WRITER=recast, then deleted (spec 2026-09-17 \xA75)."
|
|
966
966
|
});
|
|
967
967
|
function resolveGsapWriter(env) {
|
|
968
|
-
const configured = env.HYPERFRAMES_GSAP_WRITER ?? "
|
|
968
|
+
const configured = env.HYPERFRAMES_GSAP_WRITER ?? "acorn";
|
|
969
969
|
if (configured === "recast" || configured === "acorn") return configured;
|
|
970
970
|
throw new Error(`Invalid ${GSAP_WRITER_MIGRATION.flag}=${configured}; expected recast or acorn`);
|
|
971
971
|
}
|