Skip to content

Commit bda8db1

Browse files
authored
Merge pull request #108 from sigmaSd/dd
remove deno.land support
2 parents cd94953 + 214667f commit bda8db1

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,12 @@ Specific version:
4747

4848
```js
4949
import { WebUI } from "jsr:@webui/[email protected]";
50-
// Or
51-
import { WebUI } from "https://deno.land/x/[email protected]/mod.ts";
5250
```
5351

5452
Latest version:
5553

5654
```js
5755
import { WebUI } from "jsr:@webui/deno-webui";
58-
// Or
59-
import { WebUI } from "https://deno.land/x/webui/mod.ts";
6056
```
6157

6258
## Minimal Example

examples/custom_file_handler/custom_file_handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// import { WebUI } from "../../mod.ts";
99

1010
// To import from online package registry (Production)
11-
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/[email protected]/mod.ts";
11+
import { WebUI } from "@webui/deno-webui";
1212

1313
// Return HTTP header + file raw binary content
1414
const getFile = async (

examples/custom_web_server/custom_web_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// import { WebUI } from "../../mod.ts";
99

1010
// To import from online package registry (Production)
11-
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/[email protected]/mod.ts";
11+
import { WebUI } from "@webui/deno-webui";
1212

1313
function allEvents(e: WebUI.Event) {
1414
/*

examples/frameless/frameless.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// import { WebUI } from "../../mod.ts";
99

1010
// To import from online package registry (Production)
11-
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/[email protected]/mod.ts";
11+
import { WebUI } from "@webui/deno-webui";
1212

1313
const myHtml = `
1414
<html>

examples/hello_world/hello_world.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// import { WebUI } from "../../mod.ts";
99

1010
// To import from online package registry (Production)
11-
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/[email protected]/mod.ts";
11+
import { WebUI } from "@webui/deno-webui";
1212

1313
const myHtml = `<!DOCTYPE html>
1414
<html>

examples/send_raw_binary/send_raw_binary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// import { WebUI } from "../../mod.ts";
66

77
// To import from online package registry (Production)
8-
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/[email protected]/mod.ts";
8+
import { WebUI } from "@webui/deno-webui";
99

1010
const myHtml = `<!DOCTYPE html>
1111
<html>

0 commit comments

Comments
 (0)