markdown-codec 4.0.9 → 4.0.10
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 +4 -3
package/README.md
CHANGED
|
@@ -241,7 +241,7 @@ Release, CI, and commit-message conventions are all workspace-wide, not package-
|
|
|
241
241
|
|
|
242
242
|
## Contributing
|
|
243
243
|
|
|
244
|
-
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/markdown-codec/`; see
|
|
244
|
+
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/markdown-codec/`; see [CONTRIBUTING.md](../../CONTRIBUTING.md) for the shared git hooks and history conventions.
|
|
245
245
|
|
|
246
246
|
## References
|
|
247
247
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-codec",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.10",
|
|
4
4
|
"description": "Hand-written CommonMark+GFM <-> DocumentPackage codec, built on document-schema.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -51,9 +51,10 @@
|
|
|
51
51
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
52
52
|
"lint": "turbo run _lint",
|
|
53
53
|
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
54
|
-
"typecheck": "turbo run _typecheck _typecheck:node",
|
|
54
|
+
"typecheck": "turbo run _typecheck _typecheck:node _typecheck:attw",
|
|
55
55
|
"_typecheck": "tsc -p tsconfig.json",
|
|
56
56
|
"_typecheck:node": "tsc -p tsconfig.node.json",
|
|
57
|
+
"_typecheck:attw": "attw --pack",
|
|
57
58
|
"test": "turbo run _test",
|
|
58
59
|
"_test": "vitest run --project unit",
|
|
59
60
|
"test:workers": "turbo run _test:workers",
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
"license": "MIT",
|
|
81
82
|
"packageManager": "pnpm@11.6.0",
|
|
82
83
|
"dependencies": {
|
|
83
|
-
"document-schema.js": "^4.3.
|
|
84
|
+
"document-schema.js": "^4.3.7",
|
|
84
85
|
"zod": "^4.4.3"
|
|
85
86
|
},
|
|
86
87
|
"devDependencies": {
|