node-pptx-templater 1.0.0 → 1.0.1
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/CHANGELOG.md +1 -1
- package/README.md +3 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -36,4 +36,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
36
36
|
- Private class fields (`#field`) for encapsulation
|
|
37
37
|
- Modular architecture following SOLID principles
|
|
38
38
|
|
|
39
|
-
[1.0.0]: https://github.com/
|
|
39
|
+
[1.0.0]: https://github.com/jsuyog2/pptx-templater/releases/tag/v1.0.0
|
package/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
> A low-level PowerPoint OpenXML templating engine for Node.js that generates and edits PPTX files directly through XML manipulation without relying on PowerPoint generation libraries.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/node-pptx-templater)
|
|
6
|
-
[](https://github.com/jsuyog2/node-pptx-templater/actions/workflows/ci.yml)
|
|
7
|
+
[](https://codecov.io/gh/jsuyog2/node-pptx-templater)
|
|
8
8
|
[](./LICENSE)
|
|
9
9
|
[](https://nodejs.org)
|
|
10
10
|
[](https://nodejs.org/api/esm.html)
|
|
@@ -402,7 +402,7 @@ See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
|
|
|
402
402
|
|
|
403
403
|
Quick steps:
|
|
404
404
|
```bash
|
|
405
|
-
git clone https://github.com/
|
|
405
|
+
git clone https://github.com/jsuyog2/node-pptx-templater.git
|
|
406
406
|
cd node-pptx-templater
|
|
407
407
|
npm install
|
|
408
408
|
npm test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-pptx-templater",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Low-level PowerPoint OpenXML template engine for Node.js — generate and edit PPTX files directly through XML manipulation without relying on PowerPoint generation libraries.",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"repository": {
|
|
53
53
|
"type": "git",
|
|
54
|
-
"url": "https://github.com/
|
|
54
|
+
"url": "https://github.com/jsuyog2/node-pptx-templater.git"
|
|
55
55
|
},
|
|
56
56
|
"bugs": {
|
|
57
|
-
"url": "https://github.com/
|
|
57
|
+
"url": "https://github.com/jsuyog2/node-pptx-templater/issues"
|
|
58
58
|
},
|
|
59
|
-
"homepage": "https://
|
|
59
|
+
"homepage": "https://jsuyog2.github.io/node-pptx-templater",
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=18.0.0"
|
|
62
62
|
},
|
|
@@ -80,4 +80,4 @@
|
|
|
80
80
|
"LICENSE",
|
|
81
81
|
"CHANGELOG.md"
|
|
82
82
|
]
|
|
83
|
-
}
|
|
83
|
+
}
|