Skip to content

Commit

Permalink
fix: tapjs#11, basic subpath import support
Browse files Browse the repository at this point in the history
  • Loading branch information
ajvincent committed Jun 16, 2024
1 parent cccc2f1 commit 5fab420
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/hooks/hooks.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ import type {
LoadHook,
ResolveHook,
} from 'node:module'
import { resolve as pathResolve, dirname } from 'node:path'
import { resolve as pathResolve, dirname, relative } from 'node:path'
import { fileURLToPath, pathToFileURL } from 'node:url'
import { format } from 'node:util'
import { MessagePort } from 'node:worker_threads'
import { classifyModule } from '../classify-module.js'
import { DaemonClient } from '../client.js'
import { getDiagMode } from '../diagnostic-mode.js'
import getPackageJSON from '../service/get-package-json.js'
import { relative } from 'path'

// in some cases on the loader thread, console.error doesn't actually
// print. sync write to fd 1 instead.
Expand Down

0 comments on commit 5fab420

Please sign in to comment.