Skip to content

Commit

Permalink
fix: options do not change
Browse files Browse the repository at this point in the history
  • Loading branch information
mxdvl committed Sep 27, 2024
1 parent d87e0fc commit 164795c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const options = {
out_dir: slashify(flags.out_dir),
base: slashify(flags.base),
minify: !flags.watch || flags.minify,
} satisfies Options;
} as const satisfies Options;

// clean out old builds, if they exist
const clean = async (out_dir: Options["out_dir"]) => {
Expand Down

0 comments on commit 164795c

Please sign in to comment.