Skip to content

Commit 258383a

Browse files
committed
feat: support jsr
1 parent b32050e commit 258383a

6 files changed

+24
-20
lines changed

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"deno.enable": true,
33
"deno.lint": true,
4-
"deno.unstable": true,
54
"editor.formatOnSave": true,
65
"editor.defaultFormatter": "denoland.vscode-deno",
76
"cSpell.words": [
87
"deno",
8+
"denostack",
99
"iwset",
1010
"weakref",
1111
"wmap",

deno.json

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
{
2+
"name": "@denostack/weakref",
23
"version": "0.2.0",
34
"imports": {
4-
"dnt/": "https://deno.land/x/dnt@0.36.0/",
5-
"fmt/": "https://deno.land/std@0.190.0/fmt/",
6-
"testing/": "https://deno.land/std@0.190.0/testing/"
5+
"@deno/dnt": "jsr:@deno/dnt@^0.41.1",
6+
"@std/assert": "jsr:@std/assert@^0.221.0",
7+
"@std/fmt": "jsr:@std/fmt@^0.221.0"
78
},
8-
"lint": {
9-
"files": {
10-
"exclude": [".npm"]
11-
}
12-
},
13-
"fmt": {
14-
"files": {
15-
"exclude": [".npm"]
16-
}
9+
"exports": {
10+
".": "./mod.ts",
11+
"./iterable_weak_map": "./iterable_weak_map.ts",
12+
"./iterable_weak_set": "./iterable_weak_set.ts",
13+
"./weak_value_map": "./weak_value_map.ts"
1714
},
1815
"tasks": {
1916
"test": "deno task test:unit && deno task test:lint && deno task test:format && deno task test:types",
@@ -22,5 +19,12 @@
2219
"test:unit": "deno test -A",
2320
"test:types": "deno check mod.ts",
2421
"build:npm": "deno run --allow-env --allow-read --allow-write --allow-net --allow-run scripts/build_npm.ts"
25-
}
22+
},
23+
"lint": {
24+
"exclude": [".npm"]
25+
},
26+
"fmt": {
27+
"exclude": [".npm"]
28+
},
29+
"lock": false
2630
}

iterable_weak_map.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assert, assertEquals, assertFalse } from "testing/asserts.ts";
1+
import { assert, assertEquals, assertFalse } from "@std/assert";
22
import { IterableWeakMap } from "./iterable_weak_map.ts";
33

44
function* iterate<T>(items: T[]): IterableIterator<T> {

iterable_weak_set.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assert, assertEquals, assertFalse } from "testing/asserts.ts";
1+
import { assert, assertEquals, assertFalse } from "@std/assert";
22
import { IterableWeakSet } from "./iterable_weak_set.ts";
33

44
function* iterate<T>(items: T[]): IterableIterator<T> {

scripts/build_npm.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { build, emptyDir } from "dnt/mod.ts";
2-
import { bgGreen } from "fmt/colors.ts";
1+
import { build, emptyDir } from "@deno/dnt";
2+
import { bgGreen } from "@std/fmt/colors";
33

44
const denoInfo = JSON.parse(
55
Deno.readTextFileSync(new URL("../deno.json", import.meta.url)),
@@ -17,7 +17,7 @@ await build({
1717
outDir: "./.npm",
1818
test: false,
1919
compilerOptions: {
20-
lib: ["es2022"],
20+
lib: ["ES2022"],
2121
},
2222
shims: {
2323
deno: false,

weak_value_map.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assert, assertEquals, assertFalse } from "testing/asserts.ts";
1+
import { assert, assertEquals, assertFalse } from "@std/assert";
22
import { WeakValueMap } from "./weak_value_map.ts";
33

44
function* iterate<T>(items: T[]): IterableIterator<T> {

0 commit comments

Comments
 (0)