@inixiative/config 0.3.0 → 0.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
@@ -596,9 +596,10 @@ if (command === "train") {
596
596
  process.exit(1);
597
597
  }
598
598
  const stale = inspect(repo.dir, manifest).findings.filter((finding) => finding.kind === "stale-lock" && finding.name).map((finding) => finding.name);
599
- if (stale.length > 0) {
600
- spawnSync2("bun", ["update", ...new Set(stale)], { cwd: repo.dir, stdio: "inherit" });
601
- }
599
+ spawnSync2("bun", ["update", "@inixiative/config", ...new Set(stale)], {
600
+ cwd: repo.dir,
601
+ stdio: "inherit"
602
+ });
602
603
  const check = spawnSync2("bun", ["run", "check"], { cwd: repo.dir, stdio: "inherit" });
603
604
  if (check.status !== 0) {
604
605
  console.error(`\u2717 check failed in ${repo.name} \u2014 aborting train`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inixiative/config",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Shared toolchain for the inixiative ecosystem: tsconfig/biome/tsup presets, a version manifest (BOM), and a sync/check CLI",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/versions.json CHANGED
@@ -13,10 +13,10 @@
13
13
  "@types/bun"
14
14
  ],
15
15
  "ecosystem": {
16
- "@inixiative/json-rules": "2.13.0",
16
+ "@inixiative/json-rules": "2.14.0",
17
17
  "@inixiative/permissions": "0.3.2",
18
18
  "@inixiative/transitions": "0.1.0",
19
- "@inixiative/rules-builder": "0.14.0",
19
+ "@inixiative/rules-builder": "0.14.1",
20
20
  "@inixiative/prisma-map": "0.1.0",
21
21
  "@inixiative/atlas": "0.1.1"
22
22
  }