Skip to content

Commit 41a18f2

Browse files
committed
Update build to node 18.x
1 parent e31914d commit 41a18f2

File tree

2 files changed

+29
-28
lines changed

2 files changed

+29
-28
lines changed

.github/workflows/webpack.yml

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
name: Node CI
2-
3-
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
8-
9-
jobs:
10-
build:
11-
12-
runs-on: ubuntu-latest
13-
14-
strategy:
15-
matrix:
16-
node-version: [14.x, 16.x]
17-
18-
steps:
19-
- uses: actions/checkout@v2
20-
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
23-
with:
24-
node-version: ${{ matrix.node-version }}
25-
26-
- run: yarn install
27-
28-
- run: yarn jest
1+
name: Node CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [18.x]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
26+
- run: yarn install
27+
28+
- run: yarn jest

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* Activate XLSX compression by default. The example of index.bigtable.html went from 18Mb to 3Mb.
2929
* _Update npm dependencies to fix vulnerabilities_
3030
* Update to latest version of TypeScript
31+
* Reduced size of the library from 912 KB to 277 KB!!!
3132

3233
### 3.8.0
3334

0 commit comments

Comments
 (0)