@fro.bot/systematic 2.3.0 → 2.3.1

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/cli.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  findCommandsInDir,
7
7
  findSkillsInDir,
8
8
  getConfigPaths
9
- } from "./index-bky4p9gw.js";
9
+ } from "./index-5wn35nny.js";
10
10
 
11
11
  // src/cli.ts
12
12
  import fs from "fs";
@@ -3,7 +3,7 @@
3
3
  import fs from "fs";
4
4
  import os from "os";
5
5
  import path from "path";
6
- import { parse as parseJsonc } from "jsonc-parser";
6
+ import jsonc from "jsonc-parser";
7
7
  var DEFAULT_CONFIG = {
8
8
  disabled_skills: [],
9
9
  disabled_agents: [],
@@ -17,7 +17,7 @@ function loadJsoncFile(filePath) {
17
17
  if (!fs.existsSync(filePath))
18
18
  return null;
19
19
  const content = fs.readFileSync(filePath, "utf-8");
20
- return parseJsonc(content);
20
+ return jsonc.parse(content);
21
21
  } catch {
22
22
  return null;
23
23
  }
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  findSkillsInDir,
9
9
  loadConfig,
10
10
  parseFrontmatter
11
- } from "./index-bky4p9gw.js";
11
+ } from "./index-5wn35nny.js";
12
12
 
13
13
  // src/index.ts
14
14
  import fs3 from "fs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fro.bot/systematic",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",