excellentexport 3.9.7 → 3.9.9
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/.github/workflows/webpack.yml +9 -4
- package/LICENSE.txt +2 -2
- package/README.md +13 -3
- package/dist/excellentexport.d.ts +1 -1
- package/dist/excellentexport.js +1 -1
- package/package.json +45 -58
- package/src/excellentexport.ts +2 -2
- package/src/utils.ts +144 -144
- package/tsconfig.json +17 -17
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
strategy:
|
|
15
15
|
matrix:
|
|
16
|
-
node-version: [
|
|
16
|
+
node-version: [22.x]
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- uses: actions/checkout@v3
|
|
@@ -24,8 +24,13 @@ jobs:
|
|
|
24
24
|
uses: actions/setup-node@v3
|
|
25
25
|
with:
|
|
26
26
|
node-version: ${{ matrix.node-version }}
|
|
27
|
-
cache: '
|
|
27
|
+
cache: 'npm'
|
|
28
28
|
|
|
29
|
-
- run:
|
|
29
|
+
- run: npm install
|
|
30
30
|
|
|
31
|
-
- run:
|
|
31
|
+
- run: npm test
|
|
32
|
+
|
|
33
|
+
- name: Upload coverage reports to Codecov
|
|
34
|
+
uses: codecov/codecov-action@v5
|
|
35
|
+
with:
|
|
36
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
package/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2016-
|
|
3
|
+
Copyright (c) 2016-2025 Jordi Burgos
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
[](https://github.com/jmaister/excellentexport/actions/workflows/webpack.yml)
|
|
3
3
|
[](https://www.jsdelivr.com/package/npm/excellentexport)
|
|
4
|
-
[](https://codecov.io/gh/jmaister/excellentexport)
|
|
5
5
|
|
|
6
6
|
# ExcellentExport.js
|
|
7
7
|
|
|
@@ -20,14 +20,24 @@
|
|
|
20
20
|
|
|
21
21
|
# Revision history:
|
|
22
22
|
|
|
23
|
+
### 3.9.9
|
|
24
|
+
|
|
25
|
+
* Configure codecov to track code coverage.
|
|
26
|
+
* Removed coveralls, the library used is too old, not updated in years and has many vulnerabilities.
|
|
27
|
+
* Remove unused dependencies (there was a lot of them).
|
|
28
|
+
|
|
29
|
+
### 3.9.8
|
|
30
|
+
|
|
31
|
+
* _Update npm dependencies to fix vulnerabilities_
|
|
32
|
+
* Moving to npm build (package-lock.json), yarn does not support "audit fix" command to fix dependencies vulnerabilities automatically.
|
|
33
|
+
|
|
23
34
|
### 3.9.7
|
|
24
35
|
|
|
25
36
|
* _Update npm dependencies to fix vulnerabilities_
|
|
26
|
-
* xlsx package loaded from CDN
|
|
37
|
+
* xlsx package loaded from CDN [SheetJS CDN](https://cdn.sheetjs.com/)
|
|
27
38
|
|
|
28
39
|
### 3.9.6
|
|
29
40
|
|
|
30
|
-
* Got a license from IntelliJ and helped to fix some things in the code
|
|
31
41
|
* Remove references to openbase.io
|
|
32
42
|
* Fix typos
|
|
33
43
|
* _Update npm dependencies to fix vulnerabilities_
|