@oddessentials/repo-standards 4.0.0 → 4.0.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/README.md +2 -1
- package/dist/config/standards.csharp-dotnet.azure-devops.json +1 -1
- package/dist/config/standards.csharp-dotnet.github-actions.json +1 -1
- package/dist/config/standards.csharp-dotnet.json +1 -1
- package/dist/config/standards.go.azure-devops.json +1 -1
- package/dist/config/standards.go.github-actions.json +1 -1
- package/dist/config/standards.go.json +1 -1
- package/dist/config/standards.json +1 -1
- package/dist/config/standards.python.azure-devops.json +1 -1
- package/dist/config/standards.python.github-actions.json +1 -1
- package/dist/config/standards.python.json +1 -1
- package/dist/config/standards.rust.azure-devops.json +1 -1
- package/dist/config/standards.rust.github-actions.json +1 -1
- package/dist/config/standards.rust.json +1 -1
- package/dist/config/standards.typescript-js.azure-devops.json +1 -1
- package/dist/config/standards.typescript-js.github-actions.json +1 -1
- package/dist/config/standards.typescript-js.json +1 -1
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ The master spec includes a `meta` block that defines system-wide expectations:
|
|
|
68
68
|
|
|
69
69
|
## Structure of `config/standards.json`
|
|
70
70
|
|
|
71
|
-
- `version` — schema version (currently `
|
|
71
|
+
- `version` — schema version (currently `4`)
|
|
72
72
|
- `meta` — global rules and migration policy
|
|
73
73
|
- `ciSystems` — supported CI platforms
|
|
74
74
|
_(currently `github-actions`, `azure-devops`)_
|
|
@@ -103,6 +103,7 @@ The `version` field indicates schema compatibility:
|
|
|
103
103
|
- `1` — Original schema
|
|
104
104
|
- `2` — Adds `bazelHints`, `meta.executorHints.bazel` for Bazel support, `anyOfFiles`, `pinningNotes`, enforcement/severity levels, ratio-based coverage thresholds, Rust/Go stacks. Enforces strict validation with `additionalProperties: false`.
|
|
105
105
|
- `3` — Expands release, build determinism, and provenance/CI automation requirements; adds unified release workflow and template automation guidance.
|
|
106
|
+
- `4` — Stable API contract with `getStandards()`, `getSchema()`, `STANDARDS_VERSION` exports; Node 22 LTS alignment.
|
|
106
107
|
|
|
107
108
|
Consumers should ignore unknown fields for forward compatibility.
|
|
108
109
|
|
package/dist/version.d.ts
CHANGED
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
* Consumers should import from here instead of package.json to avoid
|
|
7
7
|
* ESM/CJS interop issues.
|
|
8
8
|
*/
|
|
9
|
-
export declare const STANDARDS_VERSION = "
|
|
10
|
-
export declare const STANDARDS_SCHEMA_VERSION =
|
|
9
|
+
export declare const STANDARDS_VERSION = "4.0.0";
|
|
10
|
+
export declare const STANDARDS_SCHEMA_VERSION = 4;
|
|
11
11
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* Consumers should import from here instead of package.json to avoid
|
|
7
7
|
* ESM/CJS interop issues.
|
|
8
8
|
*/
|
|
9
|
-
export const STANDARDS_VERSION = "
|
|
10
|
-
export const STANDARDS_SCHEMA_VERSION =
|
|
9
|
+
export const STANDARDS_VERSION = "4.0.0";
|
|
10
|
+
export const STANDARDS_SCHEMA_VERSION = 4;
|
package/package.json
CHANGED