File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
import { build , emptyDir } from "https://deno.land/x/[email protected] /mod.ts" ;
2
2
3
- await emptyDir ( ".. /npm" ) ;
3
+ await emptyDir ( "./npm" ) ;
4
4
5
5
await build ( {
6
- entryPoints : [ ".. /mod.ts" ] ,
7
- outDir : ".. /npm" ,
6
+ entryPoints : [ "./mod.ts" ] ,
7
+ outDir : "./npm" ,
8
8
shims : {
9
9
deno : {
10
10
test : "dev" ,
@@ -36,13 +36,13 @@ await build({
36
36
} ,
37
37
} ) ;
38
38
39
- Deno . copyFileSync ( "LICENSE" , ". ./npm/LICENSE" ) ;
39
+ Deno . copyFileSync ( "./ LICENSE" , "./npm/LICENSE" ) ;
40
40
41
- const readme = Deno . readTextFileSync ( "README.md" )
41
+ const readme = Deno . readTextFileSync ( "./ README.md" )
42
42
. replaceAll ( "https://deno.land/std/testing/asserts.ts" , "asserts" )
43
43
. replaceAll (
44
44
"https://deno.land/x/combinatorics/mod.ts" ,
45
45
"combinatorial-generators" ,
46
46
) ;
47
47
48
- Deno . writeTextFileSync ( ".. /npm/README.md" , readme ) ;
48
+ Deno . writeTextFileSync ( "./npm/README.md" , readme ) ;
You can’t perform that action at this time.
0 commit comments