在以下脚本编译一个简单的 [示例|
https://github.com/bensu/node-abs-ticket] 时
(require 'cljs.build.api)
(cljs.build.api/build "src"
{:main 'hello.core
:output-to "main.js"
:output-dir "/home/carlos/Playground/node-abs/out"
:target :nodejs})
它生成了试图解析以下路径的代码
/home/carlos/Playground/node-abs/home/carlos/Playground/node-abs/out/goog/bootstrap/nodejs.js
在 Node.js {{:none}} Shim 中解析之前,我们应该检查为 {{:output-dir}} 提供的路径是否为绝对路径。Shim 在 CLJS-1444 中有一个相关的问题。
即使用户有绝对路径的情况不常见,工具可能也需要。