Skip to content

Commit

Permalink
AP-5046 Updated package json + ignore job definition cc.
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilwylegala committed Sep 11, 2024
1 parent 9849e68 commit 239914e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions packages/outbox-core/lib/outbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export class OutboxProcessor<SupportedEvents extends CommonEventDefinition[]> {
*
* Max retry count is defined by the user.
*/
/* c8 ignore start */
export class OutboxPeriodicJob<
SupportedEvents extends CommonEventDefinition[],
> extends AbstractPeriodicJob {
Expand Down Expand Up @@ -120,6 +121,7 @@ export class OutboxPeriodicJob<
await this.outboxProcessor.processOutboxEntries(context)
}
}
/* c8 ignore stop */

export class OutboxEventEmitter<SupportedEvents extends CommonEventDefinition[]> {
constructor(private storage: OutboxStorage<SupportedEvents>) {}
Expand Down
4 changes: 1 addition & 3 deletions packages/outbox-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@
"build:release": "del-cli dist && del-cli coverage && npm run lint && tsc --project tsconfig.release.json",
"test": "vitest",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run docker:start:dev && npm run test:coverage && npm run docker:stop:dev",
"test:ci": "npm run test:coverage",
"lint": "biome check . && tsc --project tsconfig.json --noEmit",
"lint:fix": "biome check --write .",
"docker:start:dev": "docker compose up -d",
"docker:stop:dev": "docker compose down",
"prepublishOnly": "npm run build:release"
},
"dependencies": {
Expand Down

0 comments on commit 239914e

Please sign in to comment.