yyjj 2025.12.0 → 2025.12.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/dist/index.cjs +162 -153
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +162 -153
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yyjj",
|
|
3
|
-
"version": "2025.12.
|
|
3
|
+
"version": "2025.12.2",
|
|
4
4
|
"description": "JSONC⇔YAML converter library with comment preservation, powered by MoonBit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "f12o",
|
|
@@ -45,6 +45,8 @@
|
|
|
45
45
|
"build:types": "moon build --target js && mkdir -p dist && cp target/js/release/build/yyjj.d.ts dist/index.d.ts",
|
|
46
46
|
"build": "pnpm run clean && pnpm run build:moon && pnpm run build:bundle && pnpm run build:types",
|
|
47
47
|
"dev": "vite",
|
|
48
|
-
"test": "moon test"
|
|
48
|
+
"test": "moon test",
|
|
49
|
+
"version": "node scripts/sync-version.js && git add moon.mod.json",
|
|
50
|
+
"release": "node scripts/release.js"
|
|
49
51
|
}
|
|
50
52
|
}
|