Skip to content

Commit

Permalink
fix(node)!: bump node to 18.19.0 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
matteosacchetto committed Jan 9, 2024
1 parent 0854872 commit 7efc832
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup NodeJS 18.18.0
- name: Setup NodeJS 18.19.0
uses: actions/setup-node@v4
with:
node-version: 18.18.0
node-version: 18.19.0

- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup NodeJS 18.18.0
- name: Setup NodeJS 18.19.0
uses: actions/setup-node@v4
with:
node-version: 18.18.0
node-version: 18.19.0
cache: npm
cache-dependency-path: package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.18.0
18.19.0
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"build": "npm run lint && rollup -c --environment NODE_ENV:production",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:debug": "rollup -c --environment NODE_ENV:debug",
"node": "node --loader=tsx/esm --no-warnings",
"node": "node --import=tsx/esm",
"pretap": "npx tap build",
"tap": "tap --node-arg='--no-warnings' --node-arg='--loader=tsx/esm' --disable-coverage --allow-empty-coverage",
"tap": "tap --node-arg='--import=tsx/esm' --disable-coverage --allow-empty-coverage",
"pretest": "npm run lint && npx tap build",
"test": "c8 -c .c8rc.json tap --node-arg='--no-warnings' --node-arg='--loader=tsx/esm' --disable-coverage --allow-empty-coverage test/*.test.ts test/**/*.test.ts",
"test": "c8 -c .c8rc.json tap --node-arg='--import=tsx/esm' --disable-coverage --allow-empty-coverage test/*.test.ts test/**/*.test.ts",
"prepack": "npm run build"
},
"devDependencies": {
Expand All @@ -44,7 +44,7 @@
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.18.0",
"node": ">=18.19.0 || >=20.6.0",
"npm": ">=9.6.5"
},
"dependencies": {
Expand Down

0 comments on commit 7efc832

Please sign in to comment.