This commit is contained in:
Matthew Griffith 2021-09-24 10:25:19 -04:00
commit 203f251dd2
3 changed files with 25 additions and 24 deletions

View File

@ -1,8 +1,7 @@
import * as fs from 'fs';
import * as path from 'path';
import { Transforms, RunTestcaseOptions, InlineLists, BrowserOptions, Browser } from '../types';
import { Transforms, RunTestcaseOptions, InlineLists, BrowserOptions, Browser, emptyOpts } from '../types';
import * as Visit from './visit';
import chalk from 'chalk';
import * as Transform from '../transform';
import { compileToStringSync } from 'node-elm-compiler';
import * as Post from '../postprocess';
@ -251,26 +250,6 @@ export const run = async function (
const emptyOpts: Transforms = {
replaceVDomNode: false,
variantShapes: false,
inlineNumberToString: false,
inlineFunctions: false,
inlineEquality: false,
listLiterals: false,
passUnwrappedFunctions: false,
arrowFns: false,
shorthandObjectLiterals: false,
objectUpdate: false,
unusedValues: false,
replaceListFunctions: false,
replaceStringFunctions: false,
recordUpdates: false,
v8Analysis: false,
replacements: null
};
const breakdown = function (
options: Transforms
): { name: string; options: Transforms }[] {

View File

@ -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] <src/Main.elm>')
.option('--output <output>', 'the javascript file to create.', 'elm.js')
.option('-O3, --optimize-speed', 'Enable optimizations that likely increases asset size', false)
.option('--init-benchmark <dir>', 'Generate some files to help run benchmarks')
.option('--benchmark <dir>', 'Run the benchmark in the given directory.')
.option('--replacements <dir>', 'Replace stuff')
.option('-O3, --optimize-speed', 'Enable optimizations that likely increases asset size', false)
.parse(process.argv);
async function run(inputFilePath: string | undefined) {

View File

@ -75,6 +75,28 @@ export enum Browser {
export const unallowedChars = /[^A-Za-z0-9]/g;
export const emptyOpts: Transforms = {
replaceVDomNode: false,
variantShapes: false,
inlineNumberToString: false,
inlineFunctions: false,
inlineEquality: false,
listLiterals: false,
passUnwrappedFunctions: false,
arrowFns: false,
shorthandObjectLiterals: false,
objectUpdate: false,
unusedValues: false,
replaceListFunctions: false,
replaceStringFunctions: false,
recordUpdates: false,
v8Analysis: false,
fastCurriedFns: false,
replacements: null
};
export function toolDefaults(o3Enabled: boolean, replacements: { string: string } | null): Transforms {
return {
replaceVDomNode: false,
@ -112,7 +134,7 @@ export function benchmarkDefaults(o3Enabled: boolean, replacements: { string: st
objectUpdate: false,
unusedValues: false,
replaceListFunctions: true,
replaceStringFunctions: true,
replaceStringFunctions: false,
recordUpdates: o3Enabled,
v8Analysis: false,
fastCurriedFns: true,