File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 77 "coverage" : " deno test --allow-read=./ --parallel --shuffle --coverage && deno coverage --html" ,
88 "doc" : " deno doc --html rest.ts userscript.ts websocket.ts" ,
99 "npm:build" : " deno run -A scripts/build_npm.ts" ,
10- "npm:check" : " cd npm && npm publish --provenance --access=public --dry-run"
10+ "npm:check" : {
11+ "command" : " cd npm && npm publish --provenance --access=public --dry-run" ,
12+ "dependencies" : [
13+ " npm:build"
14+ ]
15+ }
1116 },
1217 "imports" : {
1318 "@std/testing/types" : " jsr:@std/testing@0/types" ,
Original file line number Diff line number Diff line change 1+ /// <reference lib="deno.ns" />
12import { build , emptyDir } from "@deno/dnt" ;
23
34await emptyDir ( "./npm" ) ;
@@ -47,8 +48,7 @@ await build({
4748 } ,
4849 // Don't run type checking during build to avoid Node.js compatibility issues
4950 typeCheck : false ,
50- declaration : "separate" ,
51- scriptModule : false ,
51+ declaration : "inline" ,
5252 compilerOptions : {
5353 lib : [ "ESNext" , "DOM" , "DOM.Iterable" ] ,
5454 target : "ES2023" ,
You can’t perform that action at this time.
0 commit comments