Skip to content

Commit a40a378

Browse files
committed
up deps
1 parent f532b28 commit a40a378

File tree

7 files changed

+937
-1452
lines changed

7 files changed

+937
-1452
lines changed

.changeset/sixty-ducks-laugh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"esbuild-cf-functions-plugin": major
33
---
44

5-
Require node 16.
5+
Dropped node versions <17, now requires 18+.

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"plan": "pnpm build && terraform -chdir=infra plan"
1010
},
1111
"devDependencies": {
12-
"@types/aws-lambda": "8.10.119",
12+
"@types/aws-lambda": "8.10.129",
1313
"esbuild-cf-functions-plugin": "workspace:*"
1414
}
1515
}

example/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node16/tsconfig.json",
2+
"extends": "@tsconfig/node18/tsconfig.json",
33
"compilerOptions": {
44
// Output
55
"noEmit": true,

package.json

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"bundler",
2121
"plugin"
2222
],
23-
"packageManager": "pnpm@8.6.9",
23+
"packageManager": "pnpm@8.11.0",
2424
"engines": {
25-
"node": ">=16"
25+
"node": ">=18"
2626
},
2727
"files": [
2828
"src",
@@ -60,21 +60,30 @@
6060
"esbuild": ">=0.14.46"
6161
},
6262
"devDependencies": {
63-
"@beequeue/eslint-plugin": "3.0.0",
63+
"@beequeue/eslint-plugin": "4.0.0",
6464
"@changesets/changelog-github": "0.4.8",
6565
"@changesets/cli": "2.26.2",
66-
"@tsconfig/node16": "16.1.0",
67-
"@types/node": "18.16.19",
68-
"@vitest/coverage-v8": "0.33.0",
66+
"@tsconfig/node18": "18.2.2",
67+
"@types/node": "20.10.0",
68+
"@vitest/coverage-v8": "0.34.6",
6969
"dotenv": "16.3.1",
70-
"eslint": "8.45.0",
71-
"lint-staged": "14.0.1",
70+
"eslint": "8.54.0",
71+
"lint-staged": "15.1.0",
7272
"nanoid": "5.0.3",
73-
"prettier": "3.0.0",
74-
"simple-git-hooks": "2.8.1",
73+
"prettier": "3.1.0",
74+
"simple-git-hooks": "2.9.0",
7575
"ts-dedent": "2.2.0",
76-
"tsup": "7.1.0",
77-
"typescript": "5.1.6",
78-
"vitest": "0.33.0"
76+
"tsup": "8.0.1",
77+
"typescript": "5.3.2",
78+
"vitest": "0.34.6"
79+
},
80+
"pnpm": {
81+
"overrides": {
82+
"array-includes": "npm:@nolyfill/array-includes@latest",
83+
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
84+
"hasown": "npm:@nolyfill/hasown@latest",
85+
"object.assign": "npm:@nolyfill/object.assign@latest",
86+
"object.values": "npm:@nolyfill/object.values@latest"
87+
}
7988
}
8089
}

0 commit comments

Comments
 (0)