@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 +4 -3
- package/package.json +1 -1
- package/versions.json +2 -2
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
|
-
|
|
600
|
-
|
|
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
package/versions.json
CHANGED
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"@types/bun"
|
|
14
14
|
],
|
|
15
15
|
"ecosystem": {
|
|
16
|
-
"@inixiative/json-rules": "2.
|
|
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.
|
|
19
|
+
"@inixiative/rules-builder": "0.14.1",
|
|
20
20
|
"@inixiative/prisma-map": "0.1.0",
|
|
21
21
|
"@inixiative/atlas": "0.1.1"
|
|
22
22
|
}
|