Skip to content

Commit feb58da

Browse files
committed
📦 Update dependencies
1 parent 6d399a7 commit feb58da

40 files changed

+138
-138
lines changed

denops/gin/component/branch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
22
import { Cache } from "https://deno.land/x/[email protected]/mod.ts";
33
import { decodeUtf8 } from "../util/text.ts";
44
import {

denops/gin/component/traffic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
22
import { Cache } from "https://deno.land/x/[email protected]/mod.ts";
33
import { decodeUtf8 } from "../util/text.ts";
44
import {

denops/gin/component/worktree.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
22
import { Cache } from "https://deno.land/x/[email protected]/mod.ts";
3-
import * as path from "https://deno.land/std@0.133.0/path/mod.ts";
3+
import * as path from "https://deno.land/std@0.150.0/path/mod.ts";
44
import {
55
findWorktreeFromSuspects,
66
listWorktreeSuspectsFromDenops,

denops/gin/core/action/action.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
2-
import * as buffer from "https://deno.land/x/denops_std@v3.3.0/buffer/mod.ts";
3-
import * as fn from "https://deno.land/x/denops_std@v3.3.0/function/mod.ts";
4-
import * as helper from "https://deno.land/x/denops_std@v3.3.0/helper/mod.ts";
5-
import * as mapping from "https://deno.land/x/denops_std@v3.3.0/mapping/mod.ts";
6-
import * as vars from "https://deno.land/x/denops_std@v3.3.0/variable/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
2+
import * as buffer from "https://deno.land/x/denops_std@v3.6.0/buffer/mod.ts";
3+
import * as fn from "https://deno.land/x/denops_std@v3.6.0/function/mod.ts";
4+
import * as helper from "https://deno.land/x/denops_std@v3.6.0/helper/mod.ts";
5+
import * as mapping from "https://deno.land/x/denops_std@v3.6.0/mapping/mod.ts";
6+
import * as vars from "https://deno.land/x/denops_std@v3.6.0/variable/mod.ts";
77

88
export type Action = {
99
name: string;

denops/gin/core/action/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
22
import * as unknownutil from "https://deno.land/x/[email protected]/mod.ts";
33
import * as registry from "./registry.ts";
44
import * as action from "./action.ts";

denops/gin/core/action/registry.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
2-
import * as anonymous from "https://deno.land/x/denops_std@v3.3.0/anonymous/mod.ts";
3-
import * as autocmd from "https://deno.land/x/denops_std@v3.3.0/autocmd/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
2+
import * as anonymous from "https://deno.land/x/denops_std@v3.6.0/anonymous/mod.ts";
3+
import * as autocmd from "https://deno.land/x/denops_std@v3.6.0/autocmd/mod.ts";
44
import type { Range } from "./action.ts";
55

66
export type { Range };

denops/gin/core/bare/command.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
2-
import * as autocmd from "https://deno.land/x/denops_std@v3.3.0/autocmd/mod.ts";
3-
import * as batch from "https://deno.land/x/denops_std@v3.3.0/batch/mod.ts";
4-
import * as fn from "https://deno.land/x/denops_std@v3.3.0/function/mod.ts";
5-
import * as helper from "https://deno.land/x/denops_std@v3.3.0/helper/mod.ts";
6-
import * as option from "https://deno.land/x/denops_std@v3.3.0/option/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
2+
import * as autocmd from "https://deno.land/x/denops_std@v3.6.0/autocmd/mod.ts";
3+
import * as batch from "https://deno.land/x/denops_std@v3.6.0/batch/mod.ts";
4+
import * as fn from "https://deno.land/x/denops_std@v3.6.0/function/mod.ts";
5+
import * as helper from "https://deno.land/x/denops_std@v3.6.0/helper/mod.ts";
6+
import * as option from "https://deno.land/x/denops_std@v3.6.0/option/mod.ts";
77
import * as unknownutil from "https://deno.land/x/[email protected]/mod.ts";
88
import {
99
parseOpts,
1010
validateOpts,
11-
} from "https://deno.land/x/denops_std@v3.3.0/argument/mod.ts";
11+
} from "https://deno.land/x/denops_std@v3.6.0/argument/mod.ts";
1212
import { expand, normCmdArgs } from "../../util/cmd.ts";
13-
import * as buffer from "https://deno.land/x/denops_std@v3.3.0/buffer/mod.ts";
13+
import * as buffer from "https://deno.land/x/denops_std@v3.6.0/buffer/mod.ts";
1414
import {
1515
buildDecorationsFromAnsiEscapeCode,
1616
removeAnsiEscapeCode,

denops/gin/core/bare/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.3.0/mod.ts";
2-
import * as helper from "https://deno.land/x/denops_std@v3.3.0/helper/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.6.0/mod.ts";
2+
import * as helper from "https://deno.land/x/denops_std@v3.6.0/helper/mod.ts";
33
import * as unknownutil from "https://deno.land/x/[email protected]/mod.ts";
44
import { parseSilent } from "../../util/cmd.ts";
55
import { command } from "./command.ts";

denops/gin/core/proxy/askpass.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env -S deno run --no-check --allow-env=GIN_PROXY_ADDRESS --allow-net=127.0.0.1
2-
import * as streams from "https://deno.land/std@0.133.0/streams/mod.ts";
2+
import * as streams from "https://deno.land/std@0.150.0/streams/mod.ts";
33

44
const resultPattern = /^([^:]+):(.*)$/;
55

denops/gin/core/proxy/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env -S deno run --no-check --allow-env=GIN_PROXY_ADDRESS --allow-net=127.0.0.1
2-
import * as streams from "https://deno.land/std@0.133.0/streams/mod.ts";
2+
import * as streams from "https://deno.land/std@0.150.0/streams/mod.ts";
33

44
const resultPattern = /^([^:]+):(.*)$/;
55

0 commit comments

Comments
 (0)