web: fix ambiguous benchmark module name

Signed-off-by: James Thomson <jthomson@pivotal.io>
This commit is contained in:
James Thomson 2019-05-16 09:58:00 -04:00 committed by James Cooper
parent fcd57a8813
commit aa509fef31
2 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,6 @@
"build-elm-debug": "cd web/elm && elm make --output ../public/elm.js src/Main.elm && uglifyjs < ../public/elm.js > ../public/elm.min.js",
"watch": "chokidar -i elm-stuff 'web/elm/src/**/*.elm' 'web/assets/css/*.less' -c 'yarn run build-debug' --initial",
"update-mdi-svg": "./hack/update-mdi-svg \"node_modules/@mdi/svg/svg\" > web/public/mdi-svg.js && uglifyjs < web/public/mdi-svg.js > web/public/mdi-svg.min.js",
"benchmark": "cd web/elm && elm make --output /tmp/benchmark.html benchmarks/Main.elm && node benchmarks/benchmark.js /tmp/benchmark.html"
"benchmark": "cd web/elm && elm make --output /tmp/benchmark.html benchmarks/Benchmarks.elm && node benchmarks/benchmark.js /tmp/benchmark.html"
}
}

View File

@ -1,4 +1,4 @@
module Main exposing (main)
module Benchmarks exposing (main)
import Benchmark
import Benchmark.Runner exposing (BenchmarkProgram, program)