@inixiative/config 0.3.0 → 0.4.0

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
@@ -155,7 +155,7 @@ var discoverRepos = (root, manifest2) => {
155
155
  const pkgPath = join(root, entry, "package.json");
156
156
  if (!existsSync(pkgPath)) continue;
157
157
  const name = tryParseJsonc(readFileSync(pkgPath, "utf8"))?.name;
158
- if (typeof name === "string" && name in manifest2.ecosystem)
158
+ if (typeof name === "string" && name in manifest2.ecosystem && name !== "@inixiative/config")
159
159
  repos.push({ dir: join(root, entry), name });
160
160
  }
161
161
  return repos.sort((a, b) => a.name.localeCompare(b.name));
@@ -374,7 +374,7 @@ function inspect(dir2, manifest2, presetOverride) {
374
374
  for (const field of DEP_FIELDS) {
375
375
  const deps = pkg[field];
376
376
  const range = deps?.[name];
377
- if (!range) continue;
377
+ if (!range || range.startsWith("file:") || range.startsWith("link:")) continue;
378
378
  const ok = admits(range, blessed);
379
379
  if (ok === false) {
380
380
  findings.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inixiative/config",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
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,11 @@
13
13
  "@types/bun"
14
14
  ],
15
15
  "ecosystem": {
16
- "@inixiative/json-rules": "2.13.0",
16
+ "@inixiative/config": "0.4.0",
17
+ "@inixiative/json-rules": "2.14.0",
17
18
  "@inixiative/permissions": "0.3.2",
18
19
  "@inixiative/transitions": "0.1.0",
19
- "@inixiative/rules-builder": "0.14.0",
20
+ "@inixiative/rules-builder": "0.14.1",
20
21
  "@inixiative/prisma-map": "0.1.0",
21
22
  "@inixiative/atlas": "0.1.1"
22
23
  }