Skip to content

Commit

Permalink
Merge pull request #259 from consensusnetworks/bug/misnamed-package
Browse files Browse the repository at this point in the history
Fix misnamed workspace in cdk script
  • Loading branch information
shanejearley committed Feb 14, 2023
2 parents 17a475d + 5bc35c1 commit 8c25ace
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
32 changes: 27 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions scripts/cdk/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import { $, echo } from 'zx'
*/
void async function () {
/** Prepare the CDK app */
await $`npm run bootstrap --workspace @core/cdk`
await $`npm run synth --workspace @core/cdk`
await $`npm run bootstrap --workspace @casimir/cdk`
await $`npm run synth --workspace @casimir/cdk`

/** Deploy the CDK app to AWS */
echo('🚀 Deploying CDK app')
$`npm run deploy --workspace @core/cdk`
$`npm run deploy --workspace @casimir/cdk`
}()


Expand Down

0 comments on commit 8c25ace

Please sign in to comment.