Skip to content

Commit 4e33b41

Browse files
committed
💪 Use relative imports instead
1 parent 30e12b7 commit 4e33b41

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

denops_std/buffer/buffer.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.2.0/mod.ts";
2-
import * as autocmd from "https://deno.land/x/denops_std@v3.2.0/autocmd/mod.ts";
3-
import * as batch from "https://deno.land/x/denops_std@v3.2.0/batch/mod.ts";
4-
import * as fn from "https://deno.land/x/denops_std@v3.2.0/function/mod.ts";
5-
import * as helper from "https://deno.land/x/denops_std@v3.2.0/helper/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.0.1/mod.ts";
2+
import * as autocmd from "../autocmd/mod.ts";
3+
import * as batch from "../batch/mod.ts";
4+
import * as fn from "../function/mod.ts";
5+
import * as helper from "../helper/mod.ts";
66
import * as unknownutil from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
77
import {
88
assertFileFormat,

denops_std/buffer/buffer_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { assertEquals } from "https://deno.land/std@0.133.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_std@v3.2.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
4-
import * as fn from "https://deno.land/x/denops_std@v3.2.0/function/mod.ts";
4+
import * as fn from "../function/mod.ts";
55
import {
66
assign,
77
concrete,

denops_std/buffer/decoration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.2.0/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v3.2.0/batch/mod.ts";
3-
import * as vimFn from "https://deno.land/x/denops_std@v3.2.0/function/vim/mod.ts";
4-
import * as nvimFn from "https://deno.land/x/denops_std@v3.2.0/function/nvim/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.0.1/mod.ts";
2+
import * as batch from "../batch/mod.ts";
3+
import * as vimFn from "../function/vim/mod.ts";
4+
import * as nvimFn from "../function/nvim/mod.ts";
55
import * as itertools from "https://deno.land/x/itertools@v1.0.2/mod.ts";
66
import { unreachable } from "https://deno.land/x/unreachable@v0.1.0/mod.ts";
77

0 commit comments

Comments
 (0)