mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2025-01-08 15:37:34 +03:00
Remove unused argument.
This commit is contained in:
parent
e31f6d3977
commit
171eefbb05
@ -9,8 +9,7 @@ const { ensureDirSync, deleteIfExists } = require('./file-helpers.js')
|
|||||||
module.exports = function run(
|
module.exports = function run(
|
||||||
mode,
|
mode,
|
||||||
staticRoutes,
|
staticRoutes,
|
||||||
markdownContent,
|
markdownContent
|
||||||
callback
|
|
||||||
) {
|
) {
|
||||||
ensureDirSync("./elm-stuff");
|
ensureDirSync("./elm-stuff");
|
||||||
ensureDirSync("./elm-stuff/elm-pages");
|
ensureDirSync("./elm-stuff/elm-pages");
|
||||||
@ -30,5 +29,5 @@ module.exports = function run(
|
|||||||
copyModifiedElmJson();
|
copyModifiedElmJson();
|
||||||
|
|
||||||
// run Main.elm from elm-stuff/elm-pages with `runElm`
|
// run Main.elm from elm-stuff/elm-pages with `runElm`
|
||||||
return runElm(mode, callback);
|
return runElm(mode);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user