@a16njs/plugin-a16n 0.7.3 → 1.0.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/README.md +4 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
This plugin enables reading and writing the a16n intermediate representation to/from disk in a human-readable, git-friendly format with versioned schema support.
|
|
7
7
|
|
|
8
|
+
## Stability
|
|
9
|
+
|
|
10
|
+
As of `1.0.0`, the plugin's `discover`/`emit` behavior is stable and follows semantic versioning: breaking changes to the public API bump the major version. (The on-disk IR schema carries its own independent Kubernetes-style version, described below.)
|
|
11
|
+
|
|
8
12
|
## Features
|
|
9
13
|
|
|
10
14
|
- **Versioned Schema**: Kubernetes-style versioning (e.g., `v1beta1`) for forward compatibility
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a16njs/plugin-a16n",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "a16n Intermediate Representation (IR) plugin for a16n",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"author": "Texarkanine",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"gray-matter": "^4.0.3",
|
|
36
36
|
"yaml": "^2.9.0",
|
|
37
|
-
"@a16njs/models": "0.
|
|
37
|
+
"@a16njs/models": "1.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^25.9.3",
|