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 91851d2 commit 54bb890
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 14 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

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

---

## [5.0.4] 2024-04-29

### Changed

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

---

## [5.0.3] 2024-03-25

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

module.exports = [
...arc,
{
ignores: [
'.nyc_output/',
'coverage/',
'node_modules/',
],
},
]
19 changes: 8 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=14"
"node": ">=16"
},
"repository": {
"type": "git",
Expand All @@ -33,10 +33,10 @@
"src/*"
],
"dependencies": {
"@architect/inventory": "~4.0.4",
"@architect/utils": "~4.0.4",
"@aws-lite/client": "^0.20.0",
"@aws-lite/cloudformation": "^0.0.4",
"@architect/inventory": "~4.0.5",
"@architect/utils": "~4.0.6",
"@aws-lite/client": "^0.21.1",
"@aws-lite/cloudformation": "^0.0.5",
"@aws-lite/cloudwatch-logs": "^0.0.4",
"chalk": "4.1.2",
"minimist": "~1.2.8",
Expand All @@ -45,17 +45,14 @@
"strftime": "~0.10.2"
},
"devDependencies": {
"@architect/eslint-config": "~2.1.2",
"@architect/eslint-config": "~3.0.0",
"cross-env": "~7.0.3",
"eslint": "~8.57.0",
"eslint": "~9.1.1",
"mock-require": "~3.0.3",
"mock-tmp": "~0.0.3",
"mock-tmp": "~0.0.4",
"nyc": "^15.1.0",
"sinon": "~17.0.1",
"tap-arc": "~1.2.2",
"tape": "~5.7.5"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}

0 comments on commit 54bb890

Please sign in to comment.