Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

chore(deps): upgrade SLIC Watch to v2 #222

Merged
merged 11 commits into from
Oct 2, 2023
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ module.exports = {
'node/no-unpublished-import': 'off',
'node/no-extraneous-import': 'off',
'unicorn/prevent-abbreviations': 'off',
'unicorn/prefer-top-level-await': 'off',
'unicorn/no-array-reduce': ["error", {"allowSimpleOperations": true}],
'no-restricted-syntax': [
'error',
Expand Down
2 changes: 1 addition & 1 deletion app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ slicWatch:
topicArn: ${ssm:/${self:provider.stage}/slicWatch/topicArn}
# If you are not sure what to do, or don't want the additional
# cost of alarms and dashboards, set 'enabled' to false
enabled: true
enabled: false
121,188 changes: 64,596 additions & 56,592 deletions package-lock.json

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,30 +107,29 @@
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"awscred": "^1.5.0",
"c8": "^7.11.3",
"c8": "^7.12.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.1",
"prettier": "2.7.1",
"quibble": "^0.6.14",
"semantic-release": "^19.0.3",
"serverless": "^3.19.0",
"tap": "^16.2.0",
"testdouble": "^3.16.6"
"tap": "^16.3.1",
"testdouble": "^3.16.7"
},
"dependencies": {
"@aws-cdk/aws-iam": "^1.159.0",
"@aws-cdk/core": "^1.159.0",
"@hapi/bourne": "^3.0.0",
"@middy/core": "^3.0.4",
"@middy/http-cors": "^3.0.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/checklist-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-offline": "^8.8.0",
"serverless-prune-plugin": "^2.0.1",
"serverless-slic-watch-plugin": "^1.2.0",
"serverless-slic-watch-plugin": "^2.1.3",
"tap": "^16.2.0",
"testdouble": "^3.16.6",
"yamljs": "^0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/cicd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ npx cdk -c stages=prod -c deploy-account=${DEPLOY_ACCOUNT} deploy prodCrossAccou

To deploy a development CICD pipeline that targets the development account only:
```
npx cdk -c stages=dev -c dev-account=${DEV_ACCOUNT} deploy PipelineStack
npx cdk -c stages=dev -c dev-account=${DEV_ACCOUNT} -c deploy-account=${DEPLOY_ACCOUNT} deploy PipelineStack
```

To deploy a production CICD pipeline that targets the staging and production accounts:
Expand Down
Loading