Skip to content

Commit

Permalink
📦 Update @denops/core to v7.0.0-pre1
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Jul 8, 2024
1 parent 315d3ac commit 43ba02d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion denops.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {
Denops,
Dispatcher,
Meta,
} from "jsr:@denops/[email protected]pre0";
} from "jsr:@denops/[email protected]pre1";
import type { Client } from "jsr:@lambdalisue/[email protected]";

export class DenopsImpl implements Denops {
Expand Down
2 changes: 1 addition & 1 deletion plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Denops } from "jsr:@denops/[email protected]pre0";
import type { Denops } from "jsr:@denops/[email protected]pre1";
import { assert, ensure, is } from "jsr:@core/[email protected]";
import { Client, Session } from "jsr:@lambdalisue/[email protected]";
import { errorDeserializer, errorSerializer } from "./error.ts";
Expand Down
2 changes: 1 addition & 1 deletion stub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {
Denops,
Dispatcher,
Meta,
} from "jsr:@denops/[email protected]pre0";
} from "jsr:@denops/[email protected]pre1";

/**
* Represents a stubber object for `Denops`.
Expand Down
2 changes: 1 addition & 1 deletion stub_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assertSpyCall, spy } from "jsr:@std/[email protected]/mock";
import { assertEquals } from "jsr:@std/[email protected]";
import type { Denops } from "jsr:@denops/[email protected]pre0";
import type { Denops } from "jsr:@denops/[email protected]pre1";
import { DenopsStub } from "./stub.ts";

Deno.test("`DenopsStub`", async (t) => {
Expand Down
2 changes: 1 addition & 1 deletion tester.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { sample } from "jsr:@std/[email protected]/sample";
import type { Denops } from "jsr:@denops/[email protected]pre0";
import type { Denops } from "jsr:@denops/[email protected]pre1";
import type { RunMode } from "./runner.ts";
import { withDenops } from "./with.ts";

Expand Down
2 changes: 1 addition & 1 deletion with.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { deadline } from "jsr:@std/[email protected]/deadline";
import { assert, is } from "jsr:@core/[email protected]";
import { Client, Session } from "jsr:@lambdalisue/[email protected]";
import type { Denops, Meta } from "jsr:@denops/[email protected]pre0";
import type { Denops, Meta } from "jsr:@denops/[email protected]pre1";
import { getConfig } from "./conf.ts";
import { run, type RunMode } from "./runner.ts";
import { DenopsImpl } from "./denops.ts";
Expand Down
2 changes: 1 addition & 1 deletion with_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
assertRejects,
} from "jsr:@std/[email protected]";
import { assertSpyCalls, spy, stub } from "jsr:@std/[email protected]/mock";
import type { Denops } from "jsr:@denops/[email protected]pre0";
import type { Denops } from "jsr:@denops/[email protected]pre1";
import { withDenops } from "./with.ts";

Deno.test("test(mode:vim) start vim to test denops features", async () => {
Expand Down

0 comments on commit 43ba02d

Please sign in to comment.