Skip to content

Commit

Permalink
fix(Workers): put back worker path + removed type import that broke t…
Browse files Browse the repository at this point in the history
…he worker assembly
  • Loading branch information
9teen90nine authored and awinogradov committed Aug 4, 2023
1 parent ac165dc commit bf3f714
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ RUN npx prisma generate

EXPOSE 3000

CMD ["node_modules/.bin/concurrently", "node background/utils/worker/index.js", "node server.js"]
CMD ["node_modules/.bin/concurrently", "node background/worker/index.js", "node server.js"]
4 changes: 2 additions & 2 deletions src/utils/worker/mail/templates.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import mdit from 'markdown-it';

import type { FieldDiff } from '../../../types/common';

import { SendMailProps } from '.';

type FieldDiff = [string | undefined | null, string | undefined | null];

const md = mdit('default', {
typographer: true,
});
Expand Down

0 comments on commit bf3f714

Please sign in to comment.