This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: prepare git farm SIM: https://i.amazon.com/V976647791 cr: https://code.amazon.com/reviews/CR-98244278 * chore: updates scripts/instructions for local development cr: https://code.amazon.com/reviews/CR-98461521 * fix: bump jest dom to resolve adobe css tools vulnerability cr: https://code.amazon.com/reviews/CR-100401748 * chore: bumps postcss cr: https://code.amazon.com/reviews/CR-103812079 * chore: bump @babel/traverse cr: https://code.amazon.com/reviews/CR-104218914 * chore: bump @babel/traverse in backend and samples cr: https://code.amazon.com/reviews/CR-104287990 * chore: bumps crypto-js and react-devtools-core packages cr: https://code.amazon.com/reviews/CR-104708604 * chore: bumps axios cr: https://code.amazon.com/reviews/CR-106070404 * chore: bumps @adobe/css-tools cr: https://code.amazon.com/reviews/CR-107300634 * chore: updates release version references * chore: adds solution manifest * fix: sets AuthorizationType.NONE for public endpoints instead of empty string * chore: update changelog for v1.9.1 --------- Co-authored-by: Daniel Wood <[email protected]>
- Loading branch information
1 parent
670c253
commit bbf5df9
Showing
25 changed files
with
2,253 additions
and
3,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"all": true, | ||
"failOn": "medium" | ||
"failOn": "high" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# Set workspace paths | ||
WORKSPACE=$(pwd) | ||
CDK_DIR=$WORKSPACE/cdk | ||
FRONTEND_DIR=$WORKSPACE/frontend | ||
BACKEND_DIR=$WORKSPACE/backend | ||
EXAMPLES_DIR=$WORKSPACE/examples | ||
|
||
verify_prereqs() { | ||
# Verify necessary commands | ||
echo "node version" | ||
node --version | ||
echo "npm version" | ||
npm --version | ||
echo "cdk version" | ||
cdk --version | ||
} | ||
|
||
build_backend() { | ||
echo "Building backend application" | ||
cd $BACKEND_DIR | ||
npm run build | ||
} | ||
|
||
build_frontend() { | ||
echo "Building frontend application" | ||
cd $FRONTEND_DIR | ||
npm run build | ||
} | ||
|
||
build_examples() { | ||
echo "Packaging examples stack" | ||
cd $EXAMPLES_DIR | ||
npm run build | ||
} | ||
|
||
build_cdk() { | ||
cd $CDK_DIR | ||
npm run build | ||
} | ||
|
||
# Start execution | ||
build_cdk | ||
build_backend | ||
build_frontend | ||
build_examples | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.