Skip to content

Commit 22cc1dc

Browse files
authored
bump wom utils (#288)
1 parent 74efb1a commit 22cc1dc

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Dockerfile.dev

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ RUN npm i
1313
# Copy the rest of the files into the container
1414
COPY . .
1515

16+
# Generate the prisma client
17+
RUN npx prisma generate
18+
1619
# Transpile the TypeScript code into JavaScript
1720
RUN npm run build
1821

package-lock.json

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@sapphire/discord.js-utilities": "^7.1.6",
4848
"@sentry/node": "^7.28.0",
4949
"@sentry/tracing": "^7.28.0",
50-
"@wise-old-man/utils": "^3.3.11",
50+
"@wise-old-man/utils": "^3.3.13",
5151
"axios": "^1.9.0",
5252
"canvas": "^2.6.1",
5353
"cors": "^2.8.5",

src/utils/notifications.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { AsyncResult, combineAsync, complete, errored, fromPromise, isErrored } from '@attio/fetchable';
12
import { ChannelType, Client, EmbedBuilder } from 'discord.js';
23
import prisma from '../services/prisma';
3-
import { AsyncResult, combineAsync, complete, errored, fromPromise, isErrored } from '@attio/fetchable';
44

55
export const NotificationType = {
66
DEFAULT: 'DEFAULT',

0 commit comments

Comments
 (0)