Skip to content

Commit 3cd7ff3

Browse files
authored
Merge pull request #37 from aws-samples/jan-2022-updates
Jan 2022 updates
2 parents f328454 + 5a4f722 commit 3cd7ff3

12 files changed

Lines changed: 88166 additions & 35293 deletions

File tree

Infra/deployStack.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
set -e;
77

88
CDK_PROFILE=default
9+
910
while [[ "$#" -gt 0 ]]; do case $1 in
1011
--profile) CDK_PROFILE="$2"; shift;;
1112
esac; shift; done
1213

14+
echo "Using AWS profile '$CDK_PROFILE'"
15+
1316
# Build all the lambdas
1417
cd ../Lambdas/Common && npm i && npm run build
1518
cd ../ChimeCallService && npm i && npm run build
@@ -22,4 +25,4 @@ cd ../Website && npm i && npm run build
2225
cd ../Infra && npm i && npm run build
2326

2427
# Synth and deploy the sandbox stack
25-
cdk --profile $CDK_PROFILE synth && cdk --profile $CDK_PROFILE deploy '*' --require-approval never
28+
cdk --profile $CDK_PROFILE synth && cdk --profile $CDK_PROFILE deploy --all --require-approval never

Infra/package-lock.json

Lines changed: 7665 additions & 2797 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Infra/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@typescript-eslint/eslint-plugin": "3.9.0",
1616
"@typescript-eslint/parser": "3.9.0",
1717
"aws-cdk": "^1.95.1",
18-
"eslint": "7.6.0",
18+
"eslint": "^7.32.0",
1919
"eslint-plugin-header": "3.0.0",
2020
"lint-staged": "10.2.11",
2121
"prettier": "2.0.5",
@@ -44,6 +44,7 @@
4444
"source-map-support": "0.5.19"
4545
},
4646
"resolutions": {
47-
"netmask": ">=2.0.1"
47+
"netmask": ">=2.0.1",
48+
"ansi-regex": ">=5.0.1"
4849
}
4950
}

0 commit comments

Comments
 (0)