document-cli 1.13.19 → 1.14.0
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/cli.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +16 -8
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "document-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
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": {
|
|
@@ -49,15 +49,22 @@
|
|
|
49
49
|
"node": ">=20"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
|
-
"build": "
|
|
52
|
+
"build": "turbo run _build",
|
|
53
|
+
"_build": "tsdown",
|
|
53
54
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
54
|
-
"lint": "
|
|
55
|
-
"
|
|
56
|
-
"
|
|
55
|
+
"lint": "turbo run _lint",
|
|
56
|
+
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
57
|
+
"typecheck": "turbo run _typecheck",
|
|
58
|
+
"_typecheck": "tsc --noEmit",
|
|
59
|
+
"test": "turbo run _test",
|
|
60
|
+
"_test": "vitest run --project unit",
|
|
57
61
|
"test:watch": "vitest --project unit",
|
|
58
|
-
"test:coverage": "
|
|
59
|
-
"
|
|
60
|
-
"test:
|
|
62
|
+
"test:coverage": "turbo run _test:coverage",
|
|
63
|
+
"_test:coverage": "vitest run --project unit --coverage",
|
|
64
|
+
"test:smoke": "turbo run _test:smoke",
|
|
65
|
+
"_test:smoke": "tsdown && vitest run --project smoke",
|
|
66
|
+
"test:workers": "turbo run _test:workers",
|
|
67
|
+
"_test:workers": "vitest run --config vitest.workers.config.ts",
|
|
61
68
|
"prepare": "husky",
|
|
62
69
|
"release": "semantic-release"
|
|
63
70
|
},
|
|
@@ -108,6 +115,7 @@
|
|
|
108
115
|
"publint": "^0.3.22",
|
|
109
116
|
"semantic-release": "^25.0.8",
|
|
110
117
|
"tsdown": "^0.22.14",
|
|
118
|
+
"turbo": "^2.10.8",
|
|
111
119
|
"typescript": "^6.0.3",
|
|
112
120
|
"typescript-eslint": "^8.65.0",
|
|
113
121
|
"vitest": "^4.1.10"
|