Skip to content

Commit

Permalink
fix(imports): use relative imports to support CI TSC config
Browse files Browse the repository at this point in the history
  • Loading branch information
benforshey committed Nov 20, 2024
1 parent 2640478 commit 12881c9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/app/documents/service.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Fuse from 'fuse.js'
import { immutableJSONPatch, JSONPatchDocument } from 'immutable-json-patch'
import { validate } from 'jsonschema'
import { getWebhookConfig, invokeWebhook } from 'webhooks/service'
import { getWebhookConfig, invokeWebhook } from '../webhooks/service'
import type { User, UserRole } from '../auth/types'
import type { ErrorData } from '../declarations'
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/macros/service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import cloneDeep from 'lodash.clonedeep'
import { getAllWebhookURLs } from 'webhooks/service'
import { getAllWebhookURLs } from '../webhooks/service'
import type { ErrorData } from '../declarations'
import log from '../lib/log'
import type { Model, PopulatedTemplate, Template } from '../models/types'
Expand Down
6 changes: 3 additions & 3 deletions packages/app/webhooks/service.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { ErrorData } from 'declarations'
import { parseResponse } from 'utils/api'
import { ErrorCode, HttpException, parseZodAsErrorData } from 'utils/errors'
import { safeParseJSON } from 'utils/json'
import log from '../lib/log'
import { parseResponse } from '../utils/api'
import { ErrorCode, HttpException, parseZodAsErrorData } from '../utils/errors'
import { safeParseJSON } from '../utils/json'
import { WebhookConfigsSchema } from './schema'
import type { WebhookConfig, WebhookPayload } from './types'

Expand Down

0 comments on commit 12881c9

Please sign in to comment.