Skip to content

Commit

Permalink
Merge pull request #70 from kg8m/update-deno-dependencies
Browse files Browse the repository at this point in the history
Update Deno Dependencies
  • Loading branch information
kg8m committed Jul 13, 2024
2 parents 8981a9d + b8c0f93 commit b2680f0
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 36 deletions.
6 changes: 3 additions & 3 deletions denops/detect-indent/buffer-cache.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].0/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].1/variable/mod.ts";
import { assert, is } from "https://deno.land/x/[email protected]/mod.ts";
import type { Options } from "./options.ts";
import { isOptions } from "./options.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/detect-indent/calculate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].0/function/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].1/function/mod.ts";
import type { Options } from "./options.ts";
import * as logger from "./logger.ts";
import { isEmptyObject } from "./util.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/detect-indent/detect.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import { isDetectable } from "./detectable.ts";
import { calculate } from "./calculate.ts";
import * as options from "./options.ts";
Expand Down
8 changes: 4 additions & 4 deletions denops/detect-indent/detectable.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import { collect } from "https://deno.land/x/[email protected].0/batch/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].0/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import { collect } from "https://deno.land/x/[email protected].1/batch/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].1/variable/mod.ts";
import type { Predicate } from "https://deno.land/x/[email protected]/mod.ts";
import { assert, is } from "https://deno.land/x/[email protected]/mod.ts";
import * as bufferCache from "./buffer-cache.ts";
Expand Down
6 changes: 3 additions & 3 deletions denops/detect-indent/logger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import { batch } from "https://deno.land/x/[email protected].0/batch/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].0/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import { batch } from "https://deno.land/x/[email protected].1/batch/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].1/variable/mod.ts";

const HIGHLIGHT_GROUPS_MAP = {
debug: "Debug",
Expand Down
2 changes: 1 addition & 1 deletion denops/detect-indent/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Entrypoint } from "https://deno.land/x/[email protected].0/mod.ts";
import type { Entrypoint } from "https://deno.land/x/[email protected].1/mod.ts";
import { detect } from "./detect.ts";
import { restore } from "./restore.ts";

Expand Down
4 changes: 2 additions & 2 deletions denops/detect-indent/options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import { is } from "https://deno.land/x/[email protected]/mod.ts";
import * as logger from "./logger.ts";
import { isEmptyObject } from "./util.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/detect-indent/restore.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as bufferCache from "./buffer-cache.ts";
import * as options from "./options.ts";
import * as logger from "./logger.ts";
Expand Down
6 changes: 3 additions & 3 deletions test/denops/detect-indent/buffer-cache_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import {
assertRejects,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].0/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].1/variable/mod.ts";
import type { Cache } from "../../../denops/detect-indent/buffer-cache.ts";
import {
get as getBufferCache,
Expand Down
4 changes: 2 additions & 2 deletions test/denops/detect-indent/calculate_test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Use denops' test() instead of built-in Deno.test()
import { test } from "https://deno.land/x/[email protected]/mod.ts";
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].0/function/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].1/function/mod.ts";
import { calculate } from "../../../denops/detect-indent/calculate.ts";
import * as testHelper from "../test-helper.ts";

Expand Down
6 changes: 3 additions & 3 deletions test/denops/detect-indent/detect_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
assertEquals,
assertNotEquals,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].0/function/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].1/function/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import * as bufferCache from "../../../denops/detect-indent/buffer-cache.ts";
import { detect } from "../../../denops/detect-indent/detect.ts";
import * as testHelper from "../test-helper.ts";
Expand Down
6 changes: 3 additions & 3 deletions test/denops/detect-indent/detectable_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
assertEquals,
assertRejects,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].0/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].1/variable/mod.ts";
import * as bufferCache from "../../../denops/detect-indent/buffer-cache.ts";
import { isDetectable } from "../../../denops/detect-indent/detectable.ts";

Expand Down
6 changes: 3 additions & 3 deletions test/denops/detect-indent/logger_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
assertMatch,
assertNotMatch,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].0/function/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].0/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].1/function/mod.ts";
import * as vimVars from "https://deno.land/x/[email protected].1/variable/mod.ts";
import { assert, is } from "https://deno.land/x/[email protected]/mod.ts";
import * as logger from "../../../denops/detect-indent/logger.ts";

Expand Down
4 changes: 2 additions & 2 deletions test/denops/detect-indent/options_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { test } from "https://deno.land/x/[email protected]/mod.ts";
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import type {
Options,
OptionsAsEmpty,
Expand Down
6 changes: 3 additions & 3 deletions test/denops/detect-indent/restore_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
assertEquals,
assertMatch,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].0/function/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].0/option/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
import * as vimFuncs from "https://deno.land/x/[email protected].1/function/mod.ts";
import * as vimOptions from "https://deno.land/x/[email protected].1/option/mod.ts";
import { assert, is } from "https://deno.land/x/[email protected]/mod.ts";
import * as bufferCache from "../../../denops/detect-indent/buffer-cache.ts";
import { restore } from "../../../denops/detect-indent/restore.ts";
Expand Down

0 comments on commit b2680f0

Please sign in to comment.