Skip to content

Commit

Permalink
make import export visitor builder default export
Browse files Browse the repository at this point in the history
  • Loading branch information
soryy708 committed Apr 1, 2024
1 parent 8df02eb commit c986ba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/exportMap/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import ExportMap from '.';
import childContext from './childContext';
import { isEsModuleInterop } from './typescript';
import { RemotePath } from './remotePath';
import { ImportExportVisitorBuilder } from './visitor';
import ImportExportVisitorBuilder from './visitor';

const log = debug('eslint-plugin-import:ExportMap');

Expand Down
2 changes: 1 addition & 1 deletion src/exportMap/visitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function makeSourceCode(text, ast) {
}
}

export class ImportExportVisitorBuilder {
export default class ImportExportVisitorBuilder {
constructor(
path,
context,
Expand Down

0 comments on commit c986ba3

Please sign in to comment.