Skip to content

Commit bda4e3f

Browse files
authored
upgrade to nodejs 18.18.2 (#101)
Upgrade to nodejs 18+. Closes #83
1 parent c07e7e8 commit bda4e3f

File tree

7 files changed

+43
-48
lines changed

7 files changed

+43
-48
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Use Node.js
1515
uses: actions/setup-node@v2
1616
with:
17-
node-version: '16.15.1'
17+
node-version: '18.18.2'
1818

1919
- uses: actions/cache@v2
2020
with:

.github/workflows/publish-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v2
1414
with:
15-
node-version: '16.15.1'
15+
node-version: '18.18.2'
1616
registry-url: 'https://registry.npmjs.org'
1717

1818
- uses: actions/cache@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v2
1414
with:
15-
node-version: '16.15.1'
15+
node-version: '18.18.2'
1616
registry-url: 'https://registry.npmjs.org'
1717

1818
- uses: actions/cache@v2

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 16.15.1
1+
nodejs 18.18.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This is a forked repository with code from various sources:
2121
- Secondary source [ZJONSSON](https://github.com/ZJONSSON/parquetjs) [npm: parquetjs-lite](https://www.npmjs.com/package/parquetjs-lite)
2222

2323
## Installation
24-
_parquet.js requires node.js >= 14.16.0_
24+
_parquet.js requires node.js >= 18.18.2_
2525

2626
```
2727
$ npm install @dsnp/parquetjs

package-lock.json

Lines changed: 36 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@
3030
"xxhash-wasm": "^1.0.2"
3131
},
3232
"devDependencies": {
33-
"@types/bson": "^4.2.0",
3433
"@types/chai": "^4.3.5",
3534
"@types/json-schema": "^7.0.11",
3635
"@types/mocha": "^10.0.1",
37-
"@types/node": "^16.18.32",
36+
"@types/node": "^18.18.2",
3837
"@types/sinon": "^10.0.15",
3938
"@types/varint": "^6.0.1",
4039
"assert": "^2.0.0",
@@ -80,7 +79,7 @@
8079
"zlib": "browserify-zlib"
8180
},
8281
"engines": {
83-
"node": ">=16.15.1"
82+
"node": ">=18.18.2"
8483
},
8584
"files": [
8685
"dist/**/*",

0 commit comments

Comments
 (0)