mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2025-01-06 14:26:35 +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(
|
||||
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);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user