@rom-weaver/cli 0.7.1 → 0.7.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/README.md +15 -14
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -84,13 +84,14 @@ libraries elsewhere is not supported.
|
|
|
84
84
|
|
|
85
85
|
### First public release
|
|
86
86
|
|
|
87
|
-
v0.7.
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
87
|
+
v0.7.2 is the first public version to install. The changelog and the git
|
|
88
|
+
history go back further, but v0.6.0 through v0.7.1 failed partway through the
|
|
89
|
+
release pipeline or were only partially published. v0.7.1 completed most of
|
|
90
|
+
the pipeline, but it still missed the crates.io CLI package, shipped a broken
|
|
91
|
+
unscoped npm launcher, and built the static webapp archive with mismatched
|
|
92
|
+
release metadata. v0.7.2 is the first release intended to have all public
|
|
93
|
+
install methods working together. Earlier version numbers describe development
|
|
94
|
+
history or incomplete releases only.
|
|
94
95
|
|
|
95
96
|
### LLM-assisted development
|
|
96
97
|
|
|
@@ -202,8 +203,8 @@ platform's binary is downloaded.
|
|
|
202
203
|
npm install --global rom-weaver
|
|
203
204
|
```
|
|
204
205
|
|
|
205
|
-
For a one-off run, or to
|
|
206
|
-
scoped
|
|
206
|
+
For a one-off run, or to add the scoped launcher for a repository's scripts,
|
|
207
|
+
use the scoped package directly:
|
|
207
208
|
|
|
208
209
|
```bash
|
|
209
210
|
npx @rom-weaver/cli probe --input game.iso
|
|
@@ -227,13 +228,13 @@ cargo binstall rom-weaver-cli
|
|
|
227
228
|
<details>
|
|
228
229
|
<summary>mise</summary>
|
|
229
230
|
|
|
230
|
-
Useful when you want the
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
Useful when you want the CLI managed per project in `mise.toml`. mise verifies
|
|
232
|
+
the release's GitHub artifact attestations on install. The
|
|
233
|
+
`minimum_release_age=0s` option lets new releases resolve immediately on release
|
|
234
|
+
day; omit it if you prefer mise's default release-age delay.
|
|
234
235
|
|
|
235
236
|
```bash
|
|
236
|
-
mise use github:brandonocasey/rom-weaver
|
|
237
|
+
mise use 'github:brandonocasey/rom-weaver[minimum_release_age=0s]'
|
|
237
238
|
```
|
|
238
239
|
|
|
239
240
|
</details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rom-weaver/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"author": "Brandon Casey",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"description": "Local-first toolkit for ROMs and disc images: inspect, extract, compress, and apply, create, or bundle patches. Offline via a browser service-worker PWA or CLI.",
|
|
@@ -60,15 +60,15 @@
|
|
|
60
60
|
"node": ">=22"
|
|
61
61
|
},
|
|
62
62
|
"optionalDependencies": {
|
|
63
|
-
"@rom-weaver/darwin-arm64": "0.7.
|
|
64
|
-
"@rom-weaver/darwin-x64": "0.7.
|
|
65
|
-
"@rom-weaver/linux-arm64-musl": "0.7.
|
|
66
|
-
"@rom-weaver/linux-ia32-musl": "0.7.
|
|
67
|
-
"@rom-weaver/linux-x64-gnu": "0.7.
|
|
68
|
-
"@rom-weaver/linux-x64-musl": "0.7.
|
|
69
|
-
"@rom-weaver/win32-arm64-msvc": "0.7.
|
|
70
|
-
"@rom-weaver/win32-ia32-msvc": "0.7.
|
|
71
|
-
"@rom-weaver/win32-x64-msvc": "0.7.
|
|
63
|
+
"@rom-weaver/darwin-arm64": "0.7.2",
|
|
64
|
+
"@rom-weaver/darwin-x64": "0.7.2",
|
|
65
|
+
"@rom-weaver/linux-arm64-musl": "0.7.2",
|
|
66
|
+
"@rom-weaver/linux-ia32-musl": "0.7.2",
|
|
67
|
+
"@rom-weaver/linux-x64-gnu": "0.7.2",
|
|
68
|
+
"@rom-weaver/linux-x64-musl": "0.7.2",
|
|
69
|
+
"@rom-weaver/win32-arm64-msvc": "0.7.2",
|
|
70
|
+
"@rom-weaver/win32-ia32-msvc": "0.7.2",
|
|
71
|
+
"@rom-weaver/win32-x64-msvc": "0.7.2"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"docs:toc": "bash scripts/update-markdown-toc.sh",
|