diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 534afdb..0000000 --- a/.eslintignore +++ /dev/null @@ -1,5 +0,0 @@ -.nyc_output/ -coverage/ -node_modules/ -test/mocks -scratch/ diff --git a/changelog.md b/changelog.md index c8aadf8..ab337eb 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..b0332f9 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,14 @@ +const arc = require('@architect/eslint-config') + +module.exports = [ + ...arc, + { + ignores: [ + '.nyc_output/', + 'coverage/', + 'node_modules/', + 'scratch/', + 'test/mocks', + ], + }, +] diff --git a/package.json b/package.json index 22fc5f4..843eeaa 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "rc": "npm version prerelease --preid RC" }, "engines": { - "node": ">=14" + "node": ">=16" }, "repository": { "type": "git", @@ -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", @@ -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" } }