Skip to content

Commit

Permalink
feat!: drop node 16 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Jan 13, 2025
1 parent afbd56a commit 7718dc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [16, 18]
node: [18, 20, 22]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['./src/*.ts'],
format: ['cjs', 'esm'],
target: 'node16.14',
target: 'node18',
splitting: true,
cjsInterop: true,
clean: true,
Expand Down

0 comments on commit 7718dc0

Please sign in to comment.