Skip to content

Commit 154a7a5

Browse files
committed
BREAKING: stop supporting all these old node versions (updated 12:24)
1 parent 55e750b commit 154a7a5

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
needs: [create_tgz]
4242
strategy:
4343
matrix:
44-
node: [20, 18, 16, 14, 12]
44+
node: [23, 22, 20, 18, 16]
4545
steps:
4646
- uses: actions/setup-node@v4
4747
with:

package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
"pony-cause": "^2.1.4",
2121
"type-fest": "^4.0.0"
2222
},
23-
"tsup": {
24-
"entry": ["src/index.ts", "src/cli.ts", "src/umzug.ts"],
25-
"outDir": "lib"
26-
},
2723
"devDependencies": {
2824
"@types/lodash": "4.17.0",
2925
"@types/node": "20.12.7",
@@ -55,7 +51,7 @@
5551
},
5652
"scripts": {
5753
"clean": "rm -rf lib",
58-
"compile": "tsc -p tsconfig.lib.json && tsup",
54+
"compile": "tsc -p tsconfig.lib.json",
5955
"build": "pnpm clean && pnpm compile",
6056
"eslint": "eslint . --max-warnings 0",
6157
"lint": "pnpm type-check && pnpm eslint",
@@ -93,6 +89,6 @@
9389
},
9490
"homepage": "https://github.com/sequelize/umzug",
9591
"engines": {
96-
"node": ">=12"
92+
"node": ">=22"
9793
}
9894
}

0 commit comments

Comments
 (0)