Skip to content

Commit

Permalink
fix another two imports
Browse files Browse the repository at this point in the history
ughhhhh esm and ts are so annoyingggggg
  • Loading branch information
isaacs committed Apr 2, 2023
1 parent bdddb1d commit 4ef4789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ast.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// parse a single path portion

import { MinimatchOptions, MMRegExp } from '.'
import { MinimatchOptions, MMRegExp } from './index.js'
import { parseClass } from './brace-expressions.js'
import { unescape } from './unescape.js'

// classes [] are handled by the parseClass method
// for positive extglobs, we sub-parse the contents, and combine,
Expand Down Expand Up @@ -72,7 +73,6 @@ const star = qmark + '*?'
const starNoEmpty = qmark + '+?'

// remove the \ chars that we added if we end up doing a nonmagic compare
import { unescape } from './unescape'
// const deslash = (s: string) => s.replace(/\\(.)/g, '$1')

export class AST {
Expand Down

0 comments on commit 4ef4789

Please sign in to comment.