Remove unused argument.

This commit is contained in:
Dillon Kearns 2020-04-22 18:00:46 -07:00
parent e31f6d3977
commit 171eefbb05

View File

@ -9,8 +9,7 @@ const { ensureDirSync, deleteIfExists } = require('./file-helpers.js')
module.exports = function run(
mode,
staticRoutes,
markdownContent,
callback
markdownContent
) {
ensureDirSync("./elm-stuff");
ensureDirSync("./elm-stuff/elm-pages");
@ -30,5 +29,5 @@ module.exports = function run(
copyModifiedElmJson();
// run Main.elm from elm-stuff/elm-pages with `runElm`
return runElm(mode, callback);
return runElm(mode);
};