@turbodocx/html-to-docx 1.14.0 → 1.15.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/README.md +22 -0
- package/dist/html-to-docx.esm.js +1 -1
- package/dist/html-to-docx.umd.js +1 -1
- package/index.d.ts +1 -0
- package/package.json +12 -3
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turbodocx/html-to-docx",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "HTML to DOCX converter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"html-to-docx",
|
|
@@ -36,7 +36,11 @@
|
|
|
36
36
|
"batch document generation",
|
|
37
37
|
"document templating",
|
|
38
38
|
"typescript",
|
|
39
|
-
"ts"
|
|
39
|
+
"ts",
|
|
40
|
+
"hebrew",
|
|
41
|
+
"arabic",
|
|
42
|
+
"rtl",
|
|
43
|
+
"right to left"
|
|
40
44
|
],
|
|
41
45
|
"main": "dist/html-to-docx.umd.js",
|
|
42
46
|
"module": "dist/html-to-docx.esm.js",
|
|
@@ -49,6 +53,10 @@
|
|
|
49
53
|
],
|
|
50
54
|
"scripts": {
|
|
51
55
|
"test": "npm run build && node example/example-node.js",
|
|
56
|
+
"test:rtl": "npm run build && node example/example-rtl.js",
|
|
57
|
+
"test:ts": "npm run build && cross-env TS_NODE_PROJECT=example/typescript/tsconfig.json ts-node -r tsconfig-paths/register example/typescript/typescript-example.ts",
|
|
58
|
+
"test:ts-rtl": "npm run build && cross-env TS_NODE_PROJECT=example/typescript/tsconfig.json ts-node -r tsconfig-paths/register example/typescript/rtl-example.ts",
|
|
59
|
+
"test:all": "npm run test && npm run test:ts && npm run test:ts-rtl",
|
|
52
60
|
"prerelease": "npm run build:prod",
|
|
53
61
|
"release": "standard-version",
|
|
54
62
|
"lint": "eslint --fix .",
|
|
@@ -88,7 +96,8 @@
|
|
|
88
96
|
"juralio-james",
|
|
89
97
|
"robinminso",
|
|
90
98
|
"shareefalis",
|
|
91
|
-
"adymo"
|
|
99
|
+
"adymo",
|
|
100
|
+
"Srajan-Sanjay-Saxena"
|
|
92
101
|
],
|
|
93
102
|
"license": "MIT",
|
|
94
103
|
"bugs": {
|