@zklogic/exceljs 5.0.5 → 5.0.6
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 +6 -3
- package/README_zh.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
# ExcelJS
|
|
2
2
|
|
|
3
|
-
[](https://github.com/ArfanKhalilMughal/exceljs/actions/workflows/tests.yml)
|
|
4
4
|
|
|
5
5
|
Read, manipulate and write spreadsheet data and styles to XLSX and JSON.
|
|
6
6
|
|
|
7
7
|
Reverse engineered from Excel spreadsheet files as a project.
|
|
8
8
|
|
|
9
|
+
> Fork of [exceljs/exceljs](https://github.com/exceljs/exceljs) by Guyon Roche. Original package published to npm as `exceljs`.
|
|
10
|
+
> This fork is maintained by Arfan Khalil Mughal at [ArfanKhalilMughal/exceljs](https://github.com/ArfanKhalilMughal/exceljs) and published to npm as `@zklogic/exceljs`.
|
|
11
|
+
|
|
9
12
|
# Translations
|
|
10
13
|
|
|
11
14
|
* [中文文档](README_zh.md)
|
|
@@ -13,7 +16,7 @@ Reverse engineered from Excel spreadsheet files as a project.
|
|
|
13
16
|
# Installation
|
|
14
17
|
|
|
15
18
|
```shell
|
|
16
|
-
npm install exceljs
|
|
19
|
+
npm install @zklogic/exceljs
|
|
17
20
|
```
|
|
18
21
|
|
|
19
22
|
# New Features!
|
|
@@ -178,7 +181,7 @@ To be clear, all contributions added to this library will be included in the lib
|
|
|
178
181
|
# Importing[⬆](#contents)<!-- Link generated with jump2header -->
|
|
179
182
|
|
|
180
183
|
```javascript
|
|
181
|
-
const ExcelJS = require('exceljs');
|
|
184
|
+
const ExcelJS = require('@zklogic/exceljs');
|
|
182
185
|
```
|
|
183
186
|
|
|
184
187
|
## ES5 Imports[⬆](#contents)<!-- Link generated with jump2header -->
|
package/README_zh.md
CHANGED