Skip to content

Commit

Permalink
chore: fix types (#423)
Browse files Browse the repository at this point in the history
No logical change here - just some cleanup
  • Loading branch information
styfle authored Jun 3, 2024
1 parent db6c65a commit 27d47e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/node-file-trace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ import {
NodeFileTraceReasons,
NodeFileTraceReasonType,
} from './types';
import { basename, dirname, extname, relative, resolve, sep } from 'path';
import { basename, dirname, extname, join, relative, resolve, sep } from 'path';
import analyze, { AnalyzeResult } from './analyze';
import resolveDependency, { NotFoundError } from './resolve-dependency';
import { isMatch } from 'micromatch';
import { sharedLibEmit } from './utils/sharedlib-emit';
import { join } from 'path';
import { CachedFileSystem } from './fs';

function inPath(path: string, parent: string) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export type EvaluatedValue = StaticValue | ConditionalValue | undefined;
export interface Node {
start: number;
end: number;
type: string;
type: ESTreeNode['type'];
[propName: string]: any;
}

0 comments on commit 27d47e3

Please sign in to comment.