Skip to content

Commit 6430145

Browse files
committed
fix ci
1 parent 1f9b28b commit 6430145

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TypeScript + ES Modules
77

88
Transpile TypeScript on the fly and serve it from your server as ES Modules.
99

10-
```ts
10+
```ts ignore
1111
import { serveDirWithTs } from "@ayame113/ts-serve";
1212

1313
Deno.serve((request) => serveDirWithTs(request));

example/index.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE html>
22
<html lang="en" dir="ltr">
3-
<head>
4-
<meta charset="utf-8">
5-
<title></title>
6-
<script src="./main.ts" type="module"></script>
7-
</head>
8-
<body>
9-
hello world
10-
</body>
3+
<head>
4+
<meta charset="utf-8">
5+
<title></title>
6+
<script src="./main.ts" type="module"></script>
7+
</head>
8+
<body>
9+
hello world
10+
</body>
1111
</html>

file_server_test.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
assertEquals,
3-
fail,
4-
} from "@std/assert";
1+
import { assertEquals, fail } from "@std/assert";
52
import {
63
MediaType,
74
serveDirWithTs,

0 commit comments

Comments
 (0)