ironprose 0.4.0 → 0.5.2
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/CHANGELOG.md +22 -0
- package/README.md +6 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# ironprose-cli
|
|
2
2
|
|
|
3
|
+
## 0.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7eadc59: fix: compare --output text now shows fixed/introduced/persistent diagnostics and score delta (closes #47)
|
|
8
|
+
|
|
9
|
+
## 0.5.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0445ee8: fix: validate --locale flag client-side, reject unknown values with exit 1 (closes #37)
|
|
14
|
+
|
|
15
|
+
## 0.5.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- e1ac7ff: feat: add --genre and --locale flags to compare subcommand (closes #38)
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- e840636: fix: resolve $ref in schema output so agents can discover all request body parameters (closes #39)
|
|
24
|
+
|
|
3
25
|
## 0.4.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -89,6 +89,12 @@ ironprose rate \
|
|
|
89
89
|
# Compare revisions
|
|
90
90
|
ironprose compare --original-file v1.md --revised-file v2.md --output json
|
|
91
91
|
|
|
92
|
+
# Compare with genre and locale context
|
|
93
|
+
ironprose compare \
|
|
94
|
+
--original-file v1.md --revised-file v2.md \
|
|
95
|
+
--genre fiction:literary --locale en-gb \
|
|
96
|
+
--output json
|
|
97
|
+
|
|
92
98
|
# List all rules
|
|
93
99
|
ironprose list-rules --output json
|
|
94
100
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "ironprose",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.5.2"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "0.
|
|
545
|
+
"version": "0.5.2"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/benchcutlogic/ironprose-cli/releases/download/v0.
|
|
3
|
+
"https://github.com/benchcutlogic/ironprose-cli/releases/download/v0.5.2"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"ironprose": "run-ironprose.js"
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"zipExt": ".tar.gz"
|
|
113
113
|
}
|
|
114
114
|
},
|
|
115
|
-
"version": "0.
|
|
115
|
+
"version": "0.5.2",
|
|
116
116
|
"volta": {
|
|
117
117
|
"node": "18.14.1",
|
|
118
118
|
"npm": "9.5.0"
|