1

我正在尝试在 Windows 上运行官方示例https://clojurescript.org/guides/webpack,执行时出现以下错误:

Execution error (ExceptionInfo) at cljs.closure/run-bundle-cmd (closure.clj:3037).
:bundle-cmd :none failed

我的完整报告如下:

"[webpack-cli] [31mUnknown command 'out/index.js'[39m\n[webpack-cli] [31mRun 'webpack --help' to see available commands and options[39m\n"

我尝试使用以下命令更改建议的“npx”和“webpack”命令:

"npx.cmd"

并使用可能的绝对路径:

"C:/Users/usuario/AppData/Roaming/npm/npx.cmd"

"C:/Program Files/nodejs/npx.cmd"

...对于“webpack”也是如此

还尝试将 'out/index.js' 更改为 './out/index.js' 并使用 {:deps {org.clojure/clojurescript {:mvn/version "1.10.773"}}} 版本而不是 1.10.741教程中建议。

知道发生了什么吗?

4

1 回答 1

1

进行这篇文章https://dev.to/romanliutikov/integrating-clojurescript-with-javascript-tooling-3799建议的更改,它可以工作。

:bundle-cmd改为:none ["C:/Program Files/nodejs/npx.cmd" "C:/Users/usuario/AppData/Roaming/npm/webpack.cmd" "--mode=development"]

并添加以下 webpack.config.js module.exports = { entry: "./out/index.js", output: { path: __dirname, filename: "bundle.js" } }

于 2021-02-02T18:12:11.183 回答