v0.0.9:2
Build Service / BuildPackage (push) Has been cancelled

This commit is contained in:
2026-05-23 02:37:38 -04:00
parent e41ff31221
commit b308d0ceaa
17 changed files with 911 additions and 493 deletions
+13
View File
@@ -0,0 +1,13 @@
import { storeJson } from '../fileModels/storeJson'
import { sdk } from '../sdk'
export const taskSeedEnableSubspaces = sdk.setupOnInit(async (effects) => {
const existing = await storeJson.read((s) => s.enableSubspaces).once()
if (existing !== null && existing !== undefined) return
await storeJson.merge(
effects,
{ enableSubspaces: false },
{ allowWriteAfterConst: true },
)
})