Skip to content

Commit 5d70614

Browse files
committed
install-udd
1 parent 31a2e5c commit 5d70614

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ https://deno.land/x/udd#installation
2323
1. 测试
2424

2525
```
26-
./test.cmd
26+
deno test
2727
```
28+
2829
2.升级依赖
2930

3031
```
3132
deno task udd
32-
3333
```
34+
3435
#### 参与贡献
3536

3637
1. Fork 本仓库

deno.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
{ "importMap": "import_map.json","tasks": {
2-
"udd": "udd *.ts"
3-
4-
} }
1+
{
2+
"importMap": "import_map.json",
3+
"tasks": {
4+
"udd": "udd '*.ts'",
5+
"install-udd": "deno install -A -f -n udd https://deno.land/x/[email protected]/main.ts"
6+
}
7+
}

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
import entityParser from "./html-entity-parser/index.ts";
2-
export{entityParser};
2+
export { entityParser };

0 commit comments

Comments
 (0)