Skip to content

Commit

Permalink
Update deps and changelog, upgrade to ESLint v9
Browse files Browse the repository at this point in the history
Update `package.json` `engines.node` property
Remove `package.json` `eslintConfig` property
  • Loading branch information
ryanblock committed Apr 29, 2024
1 parent 899d079 commit 8f3a160
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 21 deletions.
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

---

## [5.0.6] 2024-04-29

### Changed

- Updated dependencies
- Updated `package.json` `engines.node` property to reflect changes from vX


### Fixed

- Fixed REST API plugin check; thanks @jonpacker!

---

## [5.0.4 - 5.0.5] 2024-03-25

### Changed
Expand Down
14 changes: 14 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const arc = require('@architect/eslint-config')

module.exports = [
...arc,
{
ignores: [
'.nyc_output/',
'coverage/',
'node_modules/',
'scratch/',
'test/mocks',
],
},
]
29 changes: 13 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=14"
"node": ">=16"
},
"repository": {
"type": "git",
Expand All @@ -32,22 +32,22 @@
},
"homepage": "https://github.com/architect/deploy#readme",
"dependencies": {
"@architect/create": "~5.0.2",
"@architect/hydrate": "~4.0.3",
"@architect/inventory": "~4.0.4",
"@architect/package": "~9.0.2",
"@architect/utils": "~4.0.4",
"@architect/create": "~5.0.3",
"@architect/hydrate": "~4.0.6",
"@architect/inventory": "~4.0.5",
"@architect/package": "~9.0.3",
"@architect/utils": "~4.0.6",
"@aws-lite/apigatewayv2": "^0.0.4",
"@aws-lite/client": "^0.20.0",
"@aws-lite/cloudformation": "^0.0.4",
"@aws-lite/client": "^0.21.1",
"@aws-lite/cloudformation": "^0.0.5",
"@aws-lite/cloudfront": "^0.0.8",
"@aws-lite/lambda": "^0.0.5",
"@aws-lite/s3": "^0.1.20",
"@aws-lite/s3": "^0.1.21",
"@aws-lite/ssm": "^0.2.3",
"chalk": "4.1.2",
"fs-extra": "~11.2.0",
"get-folder-size": "2.0.1",
"glob": "~10.3.10",
"glob": "~10.3.12",
"mime-types": "~2.1.35",
"minimist": "~1.2.8",
"path-sort": "~0.1.0",
Expand All @@ -58,16 +58,13 @@
"zipit": "~2.0.0"
},
"devDependencies": {
"@architect/eslint-config": "~2.1.2",
"@architect/eslint-config": "~3.0.0",
"cross-env": "~7.0.3",
"eslint": "~8.57.0",
"mock-tmp": "~0.0.3",
"eslint": "~9.1.1",
"mock-tmp": "~0.0.4",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"tap-arc": "~1.2.2",
"tape": "~5.7.5"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}

0 comments on commit 8f3a160

Please sign in to comment.