From 9dacb0cddd60e9fe81e71793051df2462ac81e24 Mon Sep 17 00:00:00 2001 From: Matthew Griffith Date: Fri, 24 Sep 2021 10:24:06 -0400 Subject: [PATCH] move --O3 option up a bit --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 729c5db..1f8a02c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,10 +27,10 @@ Give me an Elm file, I'll compile it behind the scenes using Elm 0.19.1, and the ) .usage('[options] ') .option('--output ', 'the javascript file to create.', 'elm.js') + .option('-O3, --optimize-speed', 'Enable optimizations that likely increases asset size', false) .option('--init-benchmark ', 'Generate some files to help run benchmarks') .option('--benchmark ', 'Run the benchmark in the given directory.') .option('--replacements ', 'Replace stuff') - .option('-O3, --optimize-speed', 'Enable optimizations that likely increases asset size', false) .parse(process.argv); async function run(inputFilePath: string | undefined) {