markdown-codec 1.1.7 → 1.1.9
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -133,7 +133,7 @@ Modelled on `pdf-codec`'s own layering (generic primitives outward to the two co
|
|
|
133
133
|
```sh
|
|
134
134
|
pnpm build # tsdown -> dist/ (ESM + CJS + .d.ts)
|
|
135
135
|
pnpm typecheck # tsc --noEmit
|
|
136
|
-
pnpm lint # eslint . --max-warnings 0
|
|
136
|
+
pnpm lint # eslint . --fix --cache --max-warnings 0
|
|
137
137
|
pnpm test # vitest run --project unit (includes the CommonMark/GFM conformance suites)
|
|
138
138
|
pnpm test:watch # vitest --project unit
|
|
139
139
|
pnpm test:coverage # vitest run --project unit --coverage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-codec",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Hand-written CommonMark+GFM <-> ContentDocument codec, built on document-schema.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsdown",
|
|
49
49
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
50
|
-
"lint": "eslint . --max-warnings 0",
|
|
50
|
+
"lint": "eslint . --fix --cache --max-warnings 0",
|
|
51
51
|
"typecheck": "tsc --noEmit",
|
|
52
52
|
"test": "vitest run --project unit",
|
|
53
53
|
"test:watch": "vitest --project unit",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"license": "MIT",
|
|
70
70
|
"packageManager": "pnpm@11.6.0",
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"document-schema.js": "^2.3.
|
|
72
|
+
"document-schema.js": "^2.3.5",
|
|
73
73
|
"zod": "^4.4.3"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|