Skip to content

Commit

Permalink
Fixing build error. Closes #77 (#79)
Browse files Browse the repository at this point in the history
Fixes nmp build error for stop start solution
  • Loading branch information
crupakheti authored Jul 5, 2024
1 parent 80d36fc commit 662e47f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This [folder](./usecases) contains complete set of sample use cases including do

* [Image Processing Pipeline](usecases/image-processing)
* [Amazon MWAA with AWS CodeArtifact for Python dependencies](usecases/mwaa-with-codeartifact)
* [Stop and Start MWAA](usecases/start-stop-mwaa-environment/)

### Requirements.txt

Expand Down
1 change: 1 addition & 0 deletions usecases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ Complete set of sample use cases including documentation, infrastructure as code
3. [Amazon MWAA metadata database migration](metadata-migration)
4. [Amazon MWAA custom domain for public webserver](mwaa-public-webserver-custom-domain)
5. [Amazon MWAA in private VPC with Amazon Cognito](mwaa-cognito-cdk)
6. [Stop and Start MWAA](start-stop-mwaa-environment)
10 changes: 5 additions & 5 deletions usecases/start-stop-mwaa-environment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"aws-cdk": "2.139.0",
"aws-sdk-client-mock": "4.0.0",
"aws-sdk-client-mock-jest": "4.0.0",
"aws-cdk": "2.147.3",
"aws-sdk-client-mock": "4.0.1",
"aws-sdk-client-mock-jest": "4.0.1",
"esbuild": "0.20.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
Expand All @@ -55,8 +55,8 @@
"uuid": "9.0.1"
},
"dependencies": {
"@aws-sdk/client-mwaa": "3.556.0",
"aws-cdk-lib": "2.139.0",
"@aws-sdk/client-mwaa": "3.609.0",
"aws-cdk-lib": "2.147.3",
"axios": "1.6.8",
"constructs": "10.3.0",
"dotenv": "16.4.5"
Expand Down
2 changes: 1 addition & 1 deletion usecases/start-stop-mwaa-environment/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "CommonJs",
"moduleResolution": "node",
"lib": [
"ES2018"
"ESNext"
],
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down

0 comments on commit 662e47f

Please sign in to comment.