Skip to content

Commit

Permalink
Refactor schema parser imports to use relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sasamuku committed Dec 2, 2024
1 parent eb2519b commit cdb458b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {
Visitor,
loadPrism,
} from '@ruby/prism'
import type { Column, Columns, DBStructure, Table, Tables } from 'src/schema'
import { aColumn, aTable } from 'src/schema/factories'
import type { Column, Columns, DBStructure, Table, Tables } from '../../schema'
import { aColumn, aTable } from '../../schema/factories.js'
import type { Processor } from '../types.js'

function extractTableName(argNodes: Node[]): string {
Expand Down

0 comments on commit cdb458b

Please sign in to comment.