我试图找到一种在sublime上构建系统的方法,它可以在浏览器中构建和打开生成的html文件而没有任何运气。 我添加到.sublime-build for Elm制作一个额外的变种,它应该在chrome中打开生成的文件:
{
"name": "Run and Show",
"shell": true,
"cmd":
[
"elm-make",
"$file",
"--output={output}",
"--report=json",
"--yes",
"&&",
"google-chrome",
"--new-window",
"{output}"
]
},
这将在sublime的控制台中打印以下命令:
Running elm-make Test.elm --output=build/index.html --report=json --yes && google-chrome --new-window {output}
所以似乎elm-make正在运行并生成build / index.html文件,然后它不应该打开chrome窗口(因为{output}不会被替换),但实际上没有任何反应。 有没有办法让这项工作?