docx-plus 0.7.0 → 0.8.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 +11 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
>
|
|
7
|
+
> Enhanced fork of docx — backward-compatible re-export of @office-open/docx. Works in Node.js and browsers.
|
|
8
8
|
|
|
9
9
|
**docx-plus** is an enhanced fork of [docx](https://github.com/dolanmiu/docx) by Dolan Miu — a TypeScript/JavaScript library for generating and modifying Word documents (.docx) programmatically with a declarative API. We extend our sincere gratitude to the original author and all contributors for their foundational work.
|
|
10
10
|
|
|
@@ -65,11 +65,17 @@ This package re-exports everything from `@office-open/docx` for backward compati
|
|
|
65
65
|
## Installation
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
#
|
|
69
|
-
|
|
68
|
+
# pnpm
|
|
69
|
+
pnpm add docx-plus
|
|
70
70
|
|
|
71
|
-
#
|
|
72
|
-
|
|
71
|
+
# npm
|
|
72
|
+
npm install docx-plus
|
|
73
|
+
|
|
74
|
+
# yarn
|
|
75
|
+
yarn add docx-plus
|
|
76
|
+
|
|
77
|
+
# bun
|
|
78
|
+
bun add docx-plus
|
|
73
79
|
```
|
|
74
80
|
|
|
75
81
|
## Quick Start
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docx-plus",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.8.0",
|
|
4
|
+
"description": "Enhanced fork of docx — backward-compatible re-export of @office-open/docx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clippy",
|
|
7
7
|
"create",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@office-open/docx": "0.
|
|
47
|
+
"@office-open/docx": "0.8.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"dev": "basis build --stub",
|