osu-stable-db 0.2.1 → 0.2.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 +2 -2
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -100,13 +100,13 @@ This project is 100% AI-generated.
|
|
|
100
100
|
|
|
101
101
|
Committed minimal fixtures live in [tests/files](tests/files).
|
|
102
102
|
|
|
103
|
-
To run tests and
|
|
103
|
+
To run local node tests and the inspection script against your real osu! installation, set this in [.env](.env):
|
|
104
104
|
|
|
105
105
|
```dotenv
|
|
106
106
|
OSU_STABLE_DIR=C:/osu!
|
|
107
107
|
```
|
|
108
108
|
|
|
109
|
-
When OSU_STABLE_DIR is set, local
|
|
109
|
+
When OSU_STABLE_DIR is set, local node tests read your real database files and verify byte-for-byte round-trip for osu!.db, collection.db, and scores.db.
|
|
110
110
|
|
|
111
111
|
You can also generate a local inspection report for a specific beatmap identifier with:
|
|
112
112
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "osu-stable-db",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"description": "TypeScript reader and writer for osu!stable database files.",
|
|
6
6
|
"author": "zzzzv",
|
|
7
7
|
"license": "MIT",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"build": "tsdown",
|
|
31
31
|
"dev": "tsdown --watch",
|
|
32
32
|
"local:inspect": "pnpm run build && node --env-file=.env scripts/local-inspect.mjs",
|
|
33
|
-
"local:roundtrip": "pnpm run build && node --env-file=.env scripts/local-roundtrip.mjs",
|
|
34
33
|
"test": "node --env-file=.env ./node_modules/vitest/vitest.mjs",
|
|
35
34
|
"typecheck": "tsc --noEmit",
|
|
36
35
|
"prepublishOnly": "pnpm run build"
|