Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): repair pdk yarn invocations #154

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

pdk install --frozen-lockfile
pdk build
pdk workspaces run eslint
pdk eslint
3 changes: 2 additions & 1 deletion scripts/deployAll.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/bash

set -e

SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

${SCRIPT_DIR}/build.sh

pdk workspace @aws/threat-composer-infra run cdk deploy
yarn workspace @aws/threat-composer-infra run cdk deploy
2 changes: 1 addition & 1 deletion scripts/deployDev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

${SCRIPT_DIR}/build.sh

pdk workspace @aws/threat-composer-infra run cdk deploy Dev/ThreatComposerAppStack
yarn workspace @aws/threat-composer-infra run cdk deploy Dev/ThreatComposerAppStack
Loading