@gallop.software/studio 1.0.4 → 1.0.5

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.
@@ -15,7 +15,7 @@ import path5 from "path";
15
15
  import { promises as fs } from "fs";
16
16
  import path from "path";
17
17
  async function loadMeta() {
18
- const metaPath = path.join(process.cwd(), "_data", "_meta.json");
18
+ const metaPath = path.join(process.cwd(), "_data", "studio.json");
19
19
  try {
20
20
  const content = await fs.readFile(metaPath, "utf-8");
21
21
  return JSON.parse(content);
@@ -26,7 +26,7 @@ async function loadMeta() {
26
26
  async function saveMeta(meta) {
27
27
  const dataDir = path.join(process.cwd(), "_data");
28
28
  await fs.mkdir(dataDir, { recursive: true });
29
- const metaPath = path.join(dataDir, "_meta.json");
29
+ const metaPath = path.join(dataDir, "studio.json");
30
30
  const ordered = {};
31
31
  if (meta._cdns) {
32
32
  ordered._cdns = meta._cdns;