Skip to content

Commit 8eee0c1

Browse files
authored
ci: stop testing against NodeJS v18 (#512)
* build(package): set minimal node version in engines field to v20 BREAKING CHANGE: Drop support for NodeJS v18 * build: set minimal node version in build script to v20 * ci: stop testing against NodeJS v18
1 parent fafa83c commit 8eee0c1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
node_version:
16-
- 18
1716
- 20
1817
- 22
18+
- 24
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node_version }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@
6060
]
6161
},
6262
"engines": {
63-
"node": ">= 18"
63+
"node": ">= 20"
6464
}
6565
}

scripts/build.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ async function main() {
5757
import: "./dist-src/index.js",
5858
// Tooling currently are having issues with the "exports" field when there is no "default", ex: TypeScript, eslint
5959
default: "./dist-src/index.js",
60-
}
60+
},
6161
},
6262
sideEffects: false,
6363
unpkg: "dist-src/index.js",
6464
},
6565
null,
66-
2
67-
)
66+
2,
67+
),
6868
);
6969
}
7070
main();

0 commit comments

Comments
 (0)