Skip to content

Commit 4248a00

Browse files
committed
☕ Use dlink to manage dependencies
https://github.com/keroxp/dlink
1 parent 6570d6a commit 4248a00

File tree

22 files changed

+75
-18
lines changed

22 files changed

+75
-18
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ on:
1313
paths:
1414
- "**/*.md"
1515
- "**/*.ts"
16+
- "modules-lock.json"
1617
- ".github/workflows/test.yml"
1718
pull_request:
1819
branches:
1920
- main
2021
paths:
2122
- "**/*.md"
2223
- "**/*.ts"
24+
- "modules-lock.json"
2325
- ".github/workflows/test.yml"
2426

2527
jobs:

autocmd/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "../deps.ts";
1+
import { Denops } from "../vendor/https/deno.land/x/denops_core/mod.ts";
22
import { AutocmdEvent } from "./types.ts";
33

44
type CommonOptions = {

autocmd/common_test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { assertEquals, test } from "../deps_test.ts";
1+
import { test } from "../vendor/https/deno.land/x/denops_core/test/mod.ts";
2+
import { assertEquals } from "../vendor/https/deno.land/std/testing/asserts.ts";
23
import { globals } from "../variable/mod.ts";
34
import { define, emit, emitAll, list, remove } from "./common.ts";
45

autocmd/group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "../deps.ts";
1+
import { Denops } from "../vendor/https/deno.land/x/denops_core/mod.ts";
22
import { execute } from "../helper/execute.ts";
33
import { AutocmdEvent } from "./types.ts";
44
import {

autocmd/group_test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { assertEquals, test } from "../deps_test.ts";
1+
import { test } from "../vendor/https/deno.land/x/denops_core/test/mod.ts";
2+
import { assertEquals } from "../vendor/https/deno.land/std/testing/asserts.ts";
23
import { globals } from "../variable/mod.ts";
34
import { group } from "./group.ts";
45

deps.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

function/buffer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "../deps.ts";
1+
import { Denops } from "../vendor/https/deno.land/x/denops_core/mod.ts";
22

33
export async function bufadd(
44
denops: Denops,

function/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "../deps.ts";
1+
import { Denops } from "../vendor/https/deno.land/x/denops_core/mod.ts";
22

33
export async function exists(
44
denops: Denops,

helper/execute.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import { Context, Denops } from "../deps.ts";
1+
import {
2+
Context,
3+
Denops,
4+
} from "../vendor/https/deno.land/x/denops_core/mod.ts";
25

36
/**
47
* Execute Vim script directly

helper/load.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import { Denops, fs, hash, path } from "../deps.ts";
1+
import { Denops } from "../vendor/https/deno.land/x/denops_core/mod.ts";
2+
import * as fs from "../vendor/https/deno.land/std/fs/mod.ts";
3+
import * as hash from "../vendor/https/deno.land/std/hash/mod.ts";
4+
import * as path from "../vendor/https/deno.land/std/path/mod.ts";
25
import { execute } from "./execute.ts";
36

47
/**

0 commit comments

Comments
 (0)