File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @mxdvl/mononykus" ,
3
- "version" : " 0.7.8 " ,
3
+ "version" : " 0.7.9 " ,
4
4
"license" : " MIT" ,
5
5
"exports" : " ./src/build.ts" ,
6
6
"tasks" : {
Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ const flags = parseArgs(Deno.args, {
28
28
} ,
29
29
} ) ;
30
30
31
- const options : Options = {
31
+ const options = {
32
32
site_dir : slashify ( flags . site_dir ) ,
33
33
out_dir : slashify ( flags . out_dir ) ,
34
34
base : slashify ( flags . base ) ,
35
35
minify : ! flags . watch || flags . minify ,
36
- } ;
36
+ } satisfies Options ;
37
37
38
38
// clean out old builds, if they exist
39
39
const clean = async ( out_dir : Options [ "out_dir" ] ) => {
@@ -78,7 +78,7 @@ export const rebuild = async ({
78
78
out_dir,
79
79
site_dir,
80
80
minify,
81
- } : Options ) : Promise < void > => {
81
+ } = options ) : Promise < void > => {
82
82
const baseESBuildConfig = {
83
83
logLevel : "info" ,
84
84
format : "esm" ,
You can’t perform that action at this time.
0 commit comments