Skip to content

Commit 0408aca

Browse files
committed
refactor: convert to a JSR package.
1 parent 50d89a7 commit 0408aca

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

deno.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "@muni-town-temp/socket-io-server",
3+
"version": "",
4+
"exports": "./mod.ts",
5+
"imports": {
6+
"@std/async": "jsr:@std/[email protected]",
7+
"@std/io": "jsr:@std/[email protected]",
8+
"@std/testing": "jsr:@std/[email protected]",
9+
"@std/log": "jsr:@std/[email protected]"
10+
}
11+
}

deps.ts

-1
This file was deleted.

test_deps.ts

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/[email protected]/async/deferred.ts";
1+
export * from "@std/async/deferred";
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/[email protected]/async/delay.ts";
1+
export * from "@std/async/delay";
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/[email protected]/io/buffer.ts";
1+
export * from "@std/io/buffer";

0 commit comments

Comments
 (0)