File tree 3 files changed +23
-11
lines changed
3 files changed +23
-11
lines changed Original file line number Diff line number Diff line change 19
19
uses : denosaurs/depsbot@master
20
20
with :
21
21
github_token : ${{ secrets.GITHUB_TOKEN }}
22
-
Original file line number Diff line number Diff line change 1
1
{
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
+ }
11
24
}
Original file line number Diff line number Diff line change 1
1
import { decode } from "../mod.ts" ;
2
2
3
3
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" ,
5
5
) ) . bytes ( ) ;
6
6
console . log ( decode ( file ) ) ;
You can’t perform that action at this time.
0 commit comments