Skip to content

Commit

Permalink
Maintenance (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
beeequeue authored Jun 18, 2023
1 parent 43a6053 commit ff66646
Show file tree
Hide file tree
Showing 10 changed files with 514 additions and 386 deletions.
5 changes: 5 additions & 0 deletions .changeset/sixty-ducks-laugh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"esbuild-cf-functions-plugin": major
---

Require node 16.
2 changes: 1 addition & 1 deletion .github/workflows/changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18

- run: corepack enable

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18

- run: corepack enable

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18

- run: corepack enable

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18

- run: corepack enable

Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18

- run: corepack enable

Expand Down
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
save-exact = true
use-lockfile-v6 = true
34 changes: 18 additions & 16 deletions example/infra/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions example/infra/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
terraform {
required_version = "1.4.6"
required_version = "1.5.0"

required_providers {
aws = {
source = "hashicorp/aws"
version = "4.67.0"
version = "5.4.0"
}
}

backend "s3" {
bucket = "bq-terraform-state"
key = "cf-function-example.tfstate"
region = "eu-west-1"
bucket = "bq-terraform-state"
key = "cf-function-example.tfstate"
region = "eu-west-1"
}
}
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"plan": "pnpm build && terraform -chdir=infra plan"
},
"devDependencies": {
"@types/aws-lambda": "8.10.115",
"@types/aws-lambda": "8.10.119",
"esbuild-cf-functions-plugin": "workspace:*"
}
}
20 changes: 8 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"bundler",
"plugin"
],
"packageManager": "pnpm@7.33.0",
"packageManager": "pnpm@8.6.2",
"engines": {
"node": ">=14.17"
"node": ">=16"
},
"files": [
"src",
Expand Down Expand Up @@ -56,9 +56,6 @@
"release": "pnpm build && pnpm changeset publish",
"prepare": "simple-git-hooks"
},
"resolutions": {
"esbuild": "0.17.19"
},
"peerDependencies": {
"esbuild": ">=0.14.46"
},
Expand All @@ -67,18 +64,17 @@
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@tsconfig/node16": "1.0.4",
"@types/node": "16.18.34",
"@vitest/coverage-c8": "0.31.4",
"dotenv": "16.1.4",
"esbuild": "0.17.19",
"eslint": "8.42.0",
"@types/node": "18.16.18",
"@vitest/coverage-v8": "0.32.2",
"dotenv": "16.3.1",
"eslint": "8.43.0",
"lint-staged": "13.2.2",
"nanoid": "4.0.2",
"prettier": "2.8.8",
"simple-git-hooks": "2.8.1",
"ts-dedent": "2.2.0",
"tsup": "6.7.0",
"tsup": "7.0.0",
"typescript": "5.1.3",
"vitest": "0.31.4"
"vitest": "0.32.2"
}
}
Loading

0 comments on commit ff66646

Please sign in to comment.