Skip to content

Commit eca0fd5

Browse files
committed
📦 Upgrade to JSR packages
1 parent 7c82522 commit eca0fd5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+368
-424
lines changed

denops/gin/action/add.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/branch_delete.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate =

denops/gin/action/branch_move.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
44
import { define, GatherCandidates, Range } from "./core.ts";
55

66
export type Candidate = { branch: string };

denops/gin/action/branch_new.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
44
import { define, GatherCandidates, Range } from "./core.ts";
55

66
export type Candidate = { target?: string };

denops/gin/action/browse.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string; path?: string };

denops/gin/action/chaperon.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/cherry_pick.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string };

denops/gin/action/core.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as buffer from "https://deno.land/x/denops_std@v6.0.1/buffer/mod.ts";
4-
import * as fn from "https://deno.land/x/denops_std@v6.0.1/function/mod.ts";
5-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
6-
import * as mapping from "https://deno.land/x/denops_std@v6.0.1/mapping/mod.ts";
7-
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as buffer from "jsr:@denops/std@^7.0.0/buffer";
4+
import * as fn from "jsr:@denops/std@^7.0.0/function";
5+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
6+
import * as mapping from "jsr:@denops/std@^7.0.0/mapping";
7+
import { assert, is } from "jsr:@core/unknownutil@^4.0.0";
88

99
let rangeInternal: Range | undefined;
1010

denops/gin/action/diff.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/diff_smart.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string; XY: string };

denops/gin/action/echo.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
44
import { define, GatherCandidates, Range } from "./core.ts";
55

66
export type Candidate = unknown;

denops/gin/action/edit.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as buffer from "https://deno.land/x/denops_std@v6.0.1/buffer/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as buffer from "jsr:@denops/std@^7.0.0/buffer";
44
import { alias, define, GatherCandidates, Range } from "./core.ts";
55

66
export type Candidate = { path: string };

denops/gin/action/fixup.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string };

denops/gin/action/log.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commitish: string };

denops/gin/action/merge.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string };

denops/gin/action/patch.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/rebase.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
44
import { define, GatherCandidates, Range } from "./core.ts";
55

66
export type Candidate = { commit: string };

denops/gin/action/reset.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string };

denops/gin/action/reset_file.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/restore.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/revert.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string };

denops/gin/action/rm.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/show.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { alias, define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { commit: string };

denops/gin/action/stage.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44
import { doResetFile } from "./reset_file.ts";
55

denops/gin/action/stash.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { path: string };

denops/gin/action/switch.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44

55
export type Candidate = { target: string };

denops/gin/action/tag.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
3-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
44
import { alias, define, GatherCandidates, Range } from "./core.ts";
55

66
export type Candidate = { commit: string };

denops/gin/action/yank.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@v6.0.1/mod.ts";
2-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
33
import { define, GatherCandidates, Range } from "./core.ts";
44
import { yank } from "../util/yank.ts";
55

denops/gin/command/bare/command.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@v6.0.1/mod.ts";
2-
import * as autocmd from "https://deno.land/x/denops_std@v6.0.1/autocmd/mod.ts";
3-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
4-
import * as option from "https://deno.land/x/denops_std@v6.0.1/option/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as autocmd from "jsr:@denops/std@^7.0.0/autocmd";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
4+
import * as option from "jsr:@denops/std@^7.0.0/option";
55
import { removeAnsiEscapeCode } from "../../util/ansi_escape_code.ts";
66
import { execute } from "../../git/executor.ts";
77

denops/gin/command/bare/main.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
2-
import { assert, is } from "https://deno.land/x/[email protected]/mod.ts";
3-
import * as helper from "https://deno.land/x/[email protected]/helper/mod.ts";
4-
import {
5-
parseOpts,
6-
validateOpts,
7-
} from "https://deno.land/x/[email protected]/argument/opts.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import { assert, is } from "jsr:@core/unknownutil@^4.0.0";
3+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
4+
import { parseOpts, validateOpts } from "jsr:@denops/std@^7.0.0/argument";
85
import { normCmdArgs, parseSilent } from "../../util/cmd.ts";
96
import { exec } from "./command.ts";
107

denops/gin/command/branch/command.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@v6.0.1/mod.ts";
2-
import { unnullish } from "https://deno.land/x/unnullish@v1.0.1/mod.ts";
3-
import * as buffer from "https://deno.land/x/denops_std@v6.0.1/buffer/mod.ts";
4-
import * as option from "https://deno.land/x/denops_std@v6.0.1/option/mod.ts";
5-
import { format as formatBufname } from "https://deno.land/x/denops_std@v6.0.1/bufname/mod.ts";
6-
import { Flags } from "https://deno.land/x/denops_std@v6.0.1/argument/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import { unnullish } from "jsr:@lambdalisue/unnullish@^1.0.0";
3+
import * as buffer from "jsr:@denops/std@^7.0.0/buffer";
4+
import * as option from "jsr:@denops/std@^7.0.0/option";
5+
import { format as formatBufname } from "jsr:@denops/std@^7.0.0/bufname";
6+
import { Flags } from "jsr:@denops/std@^7.0.0/argument";
77
import { findWorktreeFromDenops } from "../../git/worktree.ts";
88

99
export type ExecOptions = {

denops/gin/command/branch/edit.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v6.0.1/mod.ts";
2-
import * as fn from "https://deno.land/x/denops_std@v6.0.1/function/mod.ts";
3-
import * as batch from "https://deno.land/x/denops_std@v6.0.1/batch/mod.ts";
4-
import * as buffer from "https://deno.land/x/denops_std@v6.0.1/buffer/mod.ts";
5-
import * as option from "https://deno.land/x/denops_std@v6.0.1/option/mod.ts";
6-
import * as vars from "https://deno.land/x/denops_std@v6.0.1/variable/mod.ts";
7-
import { parse as parseBufname } from "https://deno.land/x/denops_std@v6.0.1/bufname/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as fn from "jsr:@denops/std@^7.0.0/function";
3+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
4+
import * as buffer from "jsr:@denops/std@^7.0.0/buffer";
5+
import * as option from "jsr:@denops/std@^7.0.0/option";
6+
import * as vars from "jsr:@denops/std@^7.0.0/variable";
7+
import { parse as parseBufname } from "jsr:@denops/std@^7.0.0/bufname";
88
import {
99
Flags,
1010
formatFlags,
1111
parseOpts,
12-
} from "https://deno.land/x/denops_std@v6.0.1/argument/mod.ts";
12+
} from "jsr:@denops/std@^7.0.0/argument";
1313
import { bind } from "../../command/bare/command.ts";
1414
import { exec as execBuffer } from "../../command/buffer/edit.ts";
1515
import { init as initActionBranchDelete } from "../../action/branch_delete.ts";

denops/gin/command/branch/main.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v6.0.1/mod.ts";
2-
import * as helper from "https://deno.land/x/denops_std@v6.0.1/helper/mod.ts";
3-
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import * as helper from "jsr:@denops/std@^7.0.0/helper";
3+
import { assert, is } from "jsr:@core/unknownutil@^4.0.0";
44
import {
55
builtinOpts,
66
formatOpts,
77
parse,
88
validateOpts,
9-
} from "https://deno.land/x/denops_std@v6.0.1/argument/mod.ts";
9+
} from "jsr:@denops/std@^7.0.0/argument";
1010

1111
import { fillCmdArgs, normCmdArgs, parseSilent } from "../../util/cmd.ts";
1212
import { exec } from "./command.ts";

denops/gin/command/branch/parser_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertSnapshot } from "https://deno.land/std@0.214.0/testing/snapshot.ts";
1+
import { assertSnapshot } from "jsr:@std/testing@^1.0.0/snapshot";
22
import { parse } from "./parser.ts";
33

44
Deno.test("parse", async function (t): Promise<void> {

denops/gin/command/browse/command.ts

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
2-
import { unnullish } from "https://deno.land/x/[email protected]/mod.ts";
3-
import { assert, is } from "https://deno.land/x/[email protected]/mod.ts";
4-
import { systemopen } from "https://deno.land/x/[email protected]/mod.ts";
5-
import {
6-
getURL,
7-
Options,
8-
} from "https://deno.land/x/[email protected]/bin/browse.ts";
9-
import * as batch from "https://deno.land/x/[email protected]/batch/mod.ts";
10-
import * as vars from "https://deno.land/x/[email protected]/variable/mod.ts";
11-
import * as path from "https://deno.land/[email protected]/path/mod.ts";
12-
import * as option from "https://deno.land/x/[email protected]/option/mod.ts";
1+
import type { Denops } from "jsr:@denops/std@^7.0.0";
2+
import { unnullish } from "jsr:@lambdalisue/unnullish@^1.0.0";
3+
import { assert, is } from "jsr:@core/unknownutil@^4.0.0";
4+
import { systemopen } from "jsr:@lambdalisue/systemopen@^1.0.0";
5+
import { getURL, Options } from "jsr:@lambdalisue/git-browse@^1.0.1/cli";
6+
import * as batch from "jsr:@denops/std@^7.0.0/batch";
7+
import * as vars from "jsr:@denops/std@^7.0.0/variable";
8+
import * as path from "jsr:@std/path@^1.0.0";
9+
import * as option from "jsr:@denops/std@^7.0.0/option";
1310
import { findWorktreeFromDenops } from "../../git/worktree.ts";
1411
import { yank } from "../../util/yank.ts";
1512

0 commit comments

Comments
 (0)