1

我正在使用reagent 0.5.0取决于cljsjs/react. 后者附带以下deps.cljs

{:foreign-libs [{
 :file "cljsjs/development/react.inc.js",
 :file-min "cljsjs/production/react.min.inc.js",
 :provides ["cljsjs.react"]}],
 :externs ["cljsjs/common/react.ext.js"]}

这使得 React 的 JavaScript 最终出现在编译器输出中。

我想防止这种情况发生,因为我也想在纯 JavaScript 页面中使用 React。

此外,reagent/core.cljs有一个:require [cljsjs.react]指令(强制包含?),因此不能简单地省略依赖项。

有没有办法防止 React 出现在编译器输出中?

4

1 回答 1

1

从试剂自述文件 ( https://github.com/reagent-project/reagent ):

If you want the version of React with addons, you'd use something like this instead:

[reagent "0.5.0" :exclusions [cljsjs/react]]
[cljsjs/react-with-addons "0.12.2-4"]

If you want to use your own build of React (or React from a CDN), you have to use :exclusions variant of the dependency, and also provide a file named "cljsjs/react.cljs", containing just (ns cljsjs.react), in your project.

所以,只需在你的依赖项中使用 :exclusions 选项,并提供你自己的 cljsjs/react 命名空间和你的好去处。但是,此时您可以确保在 Reagent 之前加载 React。

于 2015-05-20T16:24:40.297 回答