Skip to content

Commit

Permalink
feat: esbuild plugin prep (NodeJS minimum to 16) (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-johnson authored Jul 31, 2024
1 parent 4eb65e0 commit 85adaf4
Show file tree
Hide file tree
Showing 4 changed files with 520 additions and 79 deletions.
5 changes: 5 additions & 0 deletions .changeset/smooth-cougars-think.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@optimize-lodash/esbuild-plugin": major
---

Minimum supported NodeJS version is 16 (was 12).
22 changes: 11 additions & 11 deletions packages/esbuild-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"author": "Kyle Johnson",
"license": "MIT",
"engines": {
"node": ">= 12"
"node": ">= 16"
},
"publishConfig": {
"access": "public"
Expand All @@ -47,24 +47,24 @@
"esbuild": ">= 0.8.0"
},
"devDependencies": {
"@tsconfig/node12": "1.0.11",
"@tsconfig/node16": "16.1.3",
"@types/estree": "1.0.1",
"@types/jest": "29.5.4",
"@types/lodash": "4.14.199",
"@types/node": "10.17.60",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"depcheck": "1.4.6",
"esbuild": "0.15.16",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.4.0",
"eslint-plugin-unicorn": "44.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-unicorn": "55.0.0",
"jest": "29.7.0",
"lodash": "4.17.21",
"prettier": "3.0.3",
"prettier": "3.3.3",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
"typescript": "5.5.4"
},
"dependencies": {
"@optimize-lodash/transform": "workspace:3.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild-plugin/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node12/tsconfig.json",
"extends": "@tsconfig/node16/tsconfig.json",

"include": ["src/**/*", "tests/*"],
"exclude": ["node_modules", "dist", "tests/fixtures"]
Expand Down
Loading

0 comments on commit 85adaf4

Please sign in to comment.