mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 23:12:22 +03:00
Fix arguments for dev server CLI compilation.
This commit is contained in:
parent
b2a97219f5
commit
da29205702
@ -218,9 +218,10 @@ async function start(options) {
|
||||
pendingCliCompile = compileCliApp(
|
||||
options,
|
||||
".elm-pages/Main.elm",
|
||||
"elm.js",
|
||||
path.join(process.cwd(), "elm-stuff/elm-pages/", "elm.js"),
|
||||
// "elm.js",
|
||||
"elm-stuff/elm-pages/",
|
||||
path.join("elm-stuff/elm-pages/.elm-pages/", "elm.js")
|
||||
path.join("elm-stuff/elm-pages/", "elm.js")
|
||||
);
|
||||
|
||||
Promise.all([clientElmMakeProcess, pendingCliCompile])
|
||||
@ -250,9 +251,12 @@ async function start(options) {
|
||||
pendingCliCompile = compileCliApp(
|
||||
options,
|
||||
".elm-pages/Main.elm",
|
||||
"elm.js",
|
||||
|
||||
path.join(process.cwd(), "elm-stuff/elm-pages/", "elm.js"),
|
||||
|
||||
// "elm.js",
|
||||
"elm-stuff/elm-pages/",
|
||||
path.join("elm-stuff/elm-pages/.elm-pages/", "elm.js")
|
||||
path.join("elm-stuff/elm-pages/", "elm.js")
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user