Skip to content

Commit 6fb61f7

Browse files
authored
Merge pull request #21 from lambdalisue/fix-jsr
Revert ":+1: Fix version of dependencies"
2 parents b169e2c + 78a81c4 commit 6fb61f7

File tree

6 files changed

+11
-20
lines changed

6 files changed

+11
-20
lines changed

bin/browse.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env -S deno run --allow-run --allow-read --allow-env
2-
import { parse } from "@std/flags";
3-
import { join } from "@std/path";
4-
import { ensure, is } from "@core/unknownutil";
5-
import { systemopen } from "@lambdalisue/systemopen";
6-
import { dir } from "@cross/dir";
2+
import { parse } from "jsr:@std/flags";
3+
import { join } from "jsr:@std/path";
4+
import { ensure, is } from "jsr:@core/unknownutil";
5+
import { systemopen } from "jsr:@lambdalisue/systemopen";
6+
import { dir } from "jsr:@cross/dir";
77
import {
88
getCommitAbbrevRef,
99
getCommitSHA1,

deno.jsonc

-9
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,5 @@
77
"test": "deno test -A --parallel --doc",
88
"check": "deno check **/*.ts",
99
"upgrade": "deno run -A https://deno.land/x/udd/main.ts **/*.ts"
10-
},
11-
"imports": {
12-
"@core/unknownutil": "jsr:@core/unknownutil@^3.17.2",
13-
"@cross/dir": "jsr:@cross/dir@^1.1.0",
14-
"@lambdalisue/systemopen": "jsr:@lambdalisue/systemopen@^1.0.0",
15-
"@std/assert": "jsr:@std/assert@^0.221.0",
16-
"@std/flags": "jsr:@std/flags@^0.221.0",
17-
"@std/path": "jsr:@std/path@^0.221.0",
18-
"@std/testing": "jsr:@std/testing@^0.221.0"
1910
}
2011
}

hosting_service/mod_test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertThrows } from "@std/assert";
2-
import { assertSnapshot } from "@std/testing/snapshot";
1+
import { assertThrows } from "jsr:@std/assert";
2+
import { assertSnapshot } from "jsr:@std/testing/snapshot";
33
import { getHostingService, UnsupportedHostingServiceError } from "./mod.ts";
44

55
Deno.test("getHostingService", async (t) => {

hosting_service/services/bitbucket_org.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { HostingService, Range } from "../mod.ts";
22
import type { ExecuteOptions } from "../../process.ts";
3-
import { extname } from "@std/path";
3+
import { extname } from "jsr:@std/path";
44
import { getCommitSHA1 } from "../../util.ts";
55

66
export const service: HostingService = {

process_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assert, assertRejects } from "@std/assert";
1+
import { assert, assertRejects } from "jsr:@std/assert";
22
import { execute, ExecuteError } from "./process.ts";
33

44
Deno.test("execute() runs 'git' and return a stdout on success", async () => {

util_test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { stub } from "@std/testing/mock";
2-
import { assertEquals, unreachable } from "@std/assert";
1+
import { stub } from "jsr:@std/testing/mock";
2+
import { assertEquals, unreachable } from "jsr:@std/assert";
33
import { _internals, ExecuteError } from "./process.ts";
44
import {
55
getCommitAbbrevRef,

0 commit comments

Comments
 (0)