-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from jsr-core/misc
📝 Misc update for repository transfer
- Loading branch information
Showing
7 changed files
with
18 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
"name": "@core/unknownutil", | ||
"version": "0.0.0", | ||
"exports": "./mod.ts", | ||
"lock": false, | ||
"imports": { | ||
"@deno/dnt": "jsr:@deno/dnt@^0.41.1", | ||
"@std/assert": "jsr:@std/assert@^0.221.0", | ||
"@std/testing": "jsr:@std/testing@^0.221.0", | ||
"https://deno.land/x/unknownutil@$MODULE_VERSION/": "./" | ||
}, | ||
"tasks": { | ||
"build-npm": "deno run -A scripts/build_npm.ts $(git describe --tags --always --dirty)", | ||
"check": "deno check ./**/*.ts", | ||
"test": "deno test -A --parallel --doc", | ||
"test:coverage": "deno task test --coverage=.coverage", | ||
"check": "deno check ./**/*.ts", | ||
"coverage": "deno coverage .coverage --exclude=is_bench.ts", | ||
"upgrade": "deno run -q -A https://deno.land/x/[email protected]/cli.ts ./**/*.ts", | ||
"upgrade:commit": "deno task -q upgrade --commit --prefix :package: --pre-commit=fmt" | ||
"coverage": "deno coverage .coverage --exclude=is_bench.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
import { | ||
assertSnapshot, | ||
} from "https://deno.land/[email protected]/testing/snapshot.ts"; | ||
import { assertSnapshot } from "@std/testing/snapshot"; | ||
import { inspect } from "./inspect.ts"; | ||
|
||
Deno.test("inspect", async (t) => { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
import { | ||
assertEquals, | ||
assertStrictEquals, | ||
} from "https://deno.land/[email protected]/assert/mod.ts"; | ||
import { | ||
assertSnapshot, | ||
} from "https://deno.land/[email protected]/testing/snapshot.ts"; | ||
import { assertType } from "https://deno.land/[email protected]/testing/types.ts"; | ||
import { assertEquals, assertStrictEquals } from "@std/assert"; | ||
import { assertSnapshot } from "@std/testing/snapshot"; | ||
import { assertType } from "@std/testing/types"; | ||
import { type Equal, stringify } from "./_testutil.ts"; | ||
import type { Predicate, PredicateType } from "./is.ts"; | ||
import { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { build, emptyDir } from "https://deno.land/x/dnt@0.39.0/mod.ts"; | ||
import { build, emptyDir } from "@deno/dnt"; | ||
|
||
const name = "unknownutil"; | ||
const version = Deno.args[0]; | ||
|
@@ -29,7 +29,7 @@ await build({ | |
version, | ||
author: "Alisue <[email protected]>", | ||
license: "MIT", | ||
repository: "https://github.com/lambdalisue/deno-unknownutil", | ||
repository: "https://github.com/jsr-core/unknownutil", | ||
}, | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
import { | ||
assertStrictEquals, | ||
assertThrows, | ||
} from "https://deno.land/[email protected]/assert/mod.ts"; | ||
import { assertStrictEquals, assertThrows } from "@std/assert"; | ||
import { | ||
assert, | ||
AssertError, | ||
|