diff --git a/benchmarks/deno/hono.ts b/benchmarks/deno/hono.ts index 9a52ccaee..96a64a742 100644 --- a/benchmarks/deno/hono.ts +++ b/benchmarks/deno/hono.ts @@ -1,4 +1,5 @@ -import { Hono, RegExpRouter } from '../../deno_dist/mod.ts' +import { Hono } from '../../src/index.ts' +import { RegExpRouter } from '../../src/router/reg-exp-router/index.ts' const app = new Hono({ router: new RegExpRouter() }) diff --git a/benchmarks/routers-deno/src/hono.mts b/benchmarks/routers-deno/src/hono.mts index bfc077890..a77853aff 100644 --- a/benchmarks/routers-deno/src/hono.mts +++ b/benchmarks/routers-deno/src/hono.mts @@ -1,7 +1,7 @@ -import type { Router } from '../../../deno_dist/router.ts' -import { RegExpRouter } from '../../../deno_dist/router/reg-exp-router/index.ts' -import { TrieRouter } from '../../../deno_dist/router/trie-router/index.ts' -import { PatternRouter } from '../../../deno_dist/router/pattern-router/index.ts' +import type { Router } from '../../../src/router.ts' +import { RegExpRouter } from '../../../src/router/reg-exp-router/index.ts' +import { TrieRouter } from '../../../src/router/trie-router/index.ts' +import { PatternRouter } from '../../../src/router/pattern-router/index.ts' import type { RouterInterface } from './tool.mts' import { routes, handler } from './tool.mts' diff --git a/runtime_tests/deno-jsx/deno.precompile.json b/runtime_tests/deno-jsx/deno.precompile.json index 31f0aec64..315f3b88c 100644 --- a/runtime_tests/deno-jsx/deno.precompile.json +++ b/runtime_tests/deno-jsx/deno.precompile.json @@ -11,7 +11,6 @@ "sloppy-imports" ], "imports": { - "hono/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts", - "../../deno_dist/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts" + "hono/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts" } } \ No newline at end of file diff --git a/runtime_tests/deno-jsx/deno.react-jsx.json b/runtime_tests/deno-jsx/deno.react-jsx.json index 0e1fd1d35..9e0b018a9 100644 --- a/runtime_tests/deno-jsx/deno.react-jsx.json +++ b/runtime_tests/deno-jsx/deno.react-jsx.json @@ -11,7 +11,6 @@ "sloppy-imports" ], "imports": { - "hono/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts", - "../../deno_dist/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts" + "hono/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts" } } \ No newline at end of file