markdown-codec 1.1.7 → 1.1.8

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
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.7",
3
+ "version": "1.1.8",
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",