Skip to content

Commit 13723a1

Browse files
committed
chore: fmt + lint
1 parent beada97 commit 13723a1

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

.github/workflows/depsbot.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ jobs:
1919
uses: denosaurs/depsbot@master
2020
with:
2121
github_token: ${{ secrets.GITHUB_TOKEN }}
22-

deno.json

+22-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
11
{
2-
"name": "@denosaurs/pngs",
3-
"version": "0.2.0",
4-
"exports": "./mod.ts",
5-
"tasks": {
6-
"build": "deno run -A scripts/build.ts",
7-
"fmt": "deno run -A scripts/fmt.ts",
8-
"clean": "deno run -A scripts/clean.ts",
9-
"lint": "deno run -A scripts/lint.ts"
10-
}
2+
"name": "@denosaurs/pngs",
3+
"version": "0.2.0",
4+
"exports": "./mod.ts",
5+
"tasks": {
6+
"build": "deno run -A scripts/build.ts",
7+
"fmt": "deno run -A scripts/fmt.ts",
8+
"clean": "deno run -A scripts/clean.ts",
9+
"lint": "deno run -A scripts/lint.ts"
10+
},
11+
"lint": {
12+
"exclude": [
13+
"pkg"
14+
]
15+
},
16+
"publish": {
17+
"include": [
18+
"mod.ts",
19+
"wasm.js",
20+
"README.md",
21+
"LICENSE"
22+
]
23+
}
1124
}

examples/basic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { decode } from "../mod.ts";
22

33
const file = await (await fetch(
4-
"https://avatars.githubusercontent.com/u/65427464?s=49&v=4",
4+
"https://avatars.githubusercontent.com/u/65427464?s=49&v=4",
55
)).bytes();
66
console.log(decode(file));

0 commit comments

Comments
 (0)