diff --git a/denops/dpp/app.ts b/denops/dpp/app.ts index acd4d27..6ef1d1f 100644 --- a/denops/dpp/app.ts +++ b/denops/dpp/app.ts @@ -1,4 +1,4 @@ -import { Denops, Entrypoint, ensure, is, toFileUrl, vars } from "./deps.ts"; +import { Denops, ensure, Entrypoint, is, toFileUrl, vars } from "./deps.ts"; import { ContextBuilder } from "./context.ts"; import { Dpp } from "./dpp.ts"; import { DppOptions } from "./types.ts"; @@ -79,4 +79,4 @@ export const main: Entrypoint = (denops: Denops) => { //console.log(`${Date.now() - startTime} ms`); }, }; -} +}; diff --git a/denops/dpp/deps.ts b/denops/dpp/deps.ts index f8dcd43..b34b32f 100644 --- a/denops/dpp/deps.ts +++ b/denops/dpp/deps.ts @@ -1,4 +1,7 @@ -export type { Denops, Entrypoint } from "https://deno.land/x/denops_std@v6.5.0/mod.ts"; +export type { + Denops, + Entrypoint, +} from "https://deno.land/x/denops_std@v6.5.0/mod.ts"; export { echo, execute,