How/Can 我从 ClojureScript 编译器输出中排除了继承的外部库?
How/Can I exclude inherited foreign libs from ClojureScript compiler output?
我正在使用 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 出现在编译器输出中?
来自试剂自述文件 (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 命名空间,一切顺利。不过,此时由您来确保 React 在 Reagent 之前加载。
我正在使用 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 出现在编译器输出中?
来自试剂自述文件 (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 命名空间,一切顺利。不过,此时由您来确保 React 在 Reagent 之前加载。