document-cli 1.12.2 → 1.12.4

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 CHANGED
@@ -255,7 +255,7 @@ The package splits into two independent layers sharing one thin format-detection
255
255
  ```sh
256
256
  pnpm build # tsdown -> dist/ (a library build for src/index.ts, and a separate ESM-only bin build for src/cli.ts)
257
257
  pnpm typecheck # tsc --noEmit
258
- pnpm lint # eslint . --max-warnings 0
258
+ pnpm lint # eslint . --fix --cache --max-warnings 0
259
259
  pnpm test # vitest run --project unit
260
260
  pnpm test:watch # vitest --project unit
261
261
  pnpm test:smoke # tsdown, then vitest run --project smoke -- spawns the built dist/cli.js as a real child process
package/dist/cli.js CHANGED
@@ -1046,7 +1046,7 @@ function registerSetMetadataCommand(program) {
1046
1046
  }
1047
1047
  //#endregion
1048
1048
  //#region package.json
1049
- var version = "1.12.2";
1049
+ var version = "1.12.4";
1050
1050
  //#endregion
1051
1051
  //#region src/program.ts
1052
1052
  function createProgram() {
package/dist/index.cjs CHANGED
@@ -1375,7 +1375,7 @@ function registerSetMetadataCommand(program) {
1375
1375
  }
1376
1376
  //#endregion
1377
1377
  //#region package.json
1378
- var version = "1.12.2";
1378
+ var version = "1.12.4";
1379
1379
  //#endregion
1380
1380
  //#region src/program.ts
1381
1381
  function createProgram() {
package/dist/index.js CHANGED
@@ -1374,7 +1374,7 @@ function registerSetMetadataCommand(program) {
1374
1374
  }
1375
1375
  //#endregion
1376
1376
  //#region package.json
1377
- var version = "1.12.2";
1377
+ var version = "1.12.4";
1378
1378
  //#endregion
1379
1379
  //#region src/program.ts
1380
1380
  function createProgram() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document-cli",
3
- "version": "1.12.2",
3
+ "version": "1.12.4",
4
4
  "description": "CLI and interactive Ink TUI for documents.js: every docx/pptx/odt/odp/ods/odg/odf/pdf/odm/odb/xlsx/markdown conversion, bridge, and editor as a scriptable command or a terminal app.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -43,7 +43,7 @@
43
43
  "scripts": {
44
44
  "build": "tsdown",
45
45
  "prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
46
- "lint": "eslint . --max-warnings 0",
46
+ "lint": "eslint . --fix --cache --max-warnings 0",
47
47
  "typecheck": "tsc --noEmit",
48
48
  "test": "vitest run --project unit",
49
49
  "test:watch": "vitest --project unit",
@@ -75,7 +75,7 @@
75
75
  "documents.js": "^1.85.0",
76
76
  "ink": "^7.1.1",
77
77
  "ink-text-input": "^6.0.0",
78
- "odf.js": "^2.3.4",
78
+ "odf.js": "^2.4.1",
79
79
  "pdf-codec": "^1.11.0",
80
80
  "react": "^19.2.8"
81
81
  },