Skip to content

Commit 4e8210f

Browse files
committed
start christmas delivery project
1 parent 2a52ca2 commit 4e8210f

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ A simple booking soluiton in CQRS architecture.
5151

5252
`yarn start:booking`
5353

54+
#### Christmas Delivery
55+
56+
Santa Claus is having to change his existing process ;-)
57+
58+
`yarn start:christmas`
59+
5460
## Tests
5561

5662
I choose ts-jest. Run with `yarn test` or `yarn jest`

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"start:birthdays": "ts-node src/katas/birthdaygreetings/birthdayGreetings.ts",
55
"start:bowling": "ts-node src/katas/bowling/bowling.ts",
66
"start:booking": "ts-node src/katas/cqrsBooking/cqrsBooking.ts",
7+
"christmas": "ts-node src/katas/christmasDelivery/christmasDelivery.ts",
78
"build": "tsc",
89
"watch": "tsc -w",
910
"test": "jest --watch",

src/katas/christmasDelivery/christmasDelivery.test.ts

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// == MAIN ==
2+
if (require.main === module) {
3+
}

0 commit comments

Comments
 (0)