Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

feat(local): local runtime for testing and debugging business logic #87

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 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 examples/airline/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"clean": "rm -rf lib"
},
"keywords": [],
"license": "MIT",
"author": "",
"private": true,
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.18.0",
"@aws-sdk/client-lambda": "^3.16.0",
Expand Down
3 changes: 2 additions & 1 deletion examples/airline/loyalty/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
"version": "0.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"author": "",
"scripts": {
"clean": "rm -rf lib cdk.out stochastic.out tsconfig.tsbuildinfo",
"cdk": "cdk",
"test": "jest --passWithNoTests",
"synth": "cdk synth"
},
"keywords": [],
"author": "Ryan Marsh",
"dependencies": {
"@aws-cdk/core": "^1.105.0",
"aws-cdk": "^1.105.0",
Expand Down
3 changes: 2 additions & 1 deletion examples/airline/operations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"synth": "cdk synth"
},
"keywords": [],
"author": "Ryan Marsh",
"license": "MIT",
"author": "",
"dependencies": {
"@aws-cdk/aws-events": "^1.105.0",
"@aws-cdk/core": "^1.105.0",
Expand Down
3 changes: 2 additions & 1 deletion examples/airline/reservations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"synth": "cdk synth"
},
"keywords": [],
"author": "Ryan Marsh",
"license": "MIT",
"author": "",
"dependencies": {
"@aws-cdk/aws-dynamodb": "^1.105.0",
"@aws-cdk/aws-events": "^1.105.0",
Expand Down
3 changes: 2 additions & 1 deletion examples/airline/scheduling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"synth": "cdk synth"
},
"keywords": [],
"author": "Ryan Marsh",
"license": "MIT",
"author": "",
"dependencies": {
"@aws-cdk/aws-events": "^1.105.0",
"@aws-cdk/core": "^1.105.0",
Expand Down
Loading