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

feat!: Initial Commit #323

Merged
merged 21 commits into from
Jun 28, 2022
Prev Previous commit
Next Next commit
cicd
  • Loading branch information
Shashikant Hirugade committed Jun 26, 2022
commit 6fba2448dca634db8dd620b27c969dc0c89c05d1
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
command: mkdir -p /lintresults
- run:
name: Execute linting
command: (npm run lint > /lintresults/results.txt)
command: (yarn run lint > /lintresults/results.txt)
- store_artifacts:
path: /lintresults

Expand Down
2 changes: 1 addition & 1 deletion modules/command-handler/src/application/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@

"use strict";

let msg: string = 'Command Handler!';
const msg = 'Command Handler!';
console.log(msg);
2 changes: 1 addition & 1 deletion modules/event-handler/src/application/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@

"use strict";

let message: string = 'Event Handler!';
const message = 'Event Handler!';
console.log(message);