Requirejs优化工具排除文件夹

发布于 2025-01-03 23:29:59 字数 223 浏览 1 评论 0原文

我正在尝试使用 r.js 优化项目,但对如何从复制步骤中排除某个文件夹感到困惑。我的结构是...

/index.htm
/scripts/main.js
/scripts/require.js
/scripts/libs/jquery/jquery.js
/scripts/libs/other/ /* 我不想将此文件夹中的任何内容移动到构建中 */

可以这样做吗?

I am trying to optimize a project with r.js and am confused about how to exclude a certain folder from the copy step. My structure is...

/index.htm
/scripts/main.js
/scripts/require.js
/scripts/libs/jquery/jquery.js
/scripts/libs/other/ /* I want NONE of this folder to be moved to the build */

Is it possible to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沐歌 2025-01-10 23:29:59

在构建配置中,您可以使用 fileExclusionRegExp 属性排除文件和文件夹。

因此,对于您的示例,您将拥有:

fileExclusionRegExp: /^other$/

这将排除任何名为其他的文件夹或文件。

In your build config you can exclude files and folders using the fileExclusionRegExp property.

So for you example you would have:

fileExclusionRegExp: /^other$/

This will exclude any folders or files called other.

初熏 2025-01-10 23:29:59

是的,文档为您提供了多种执行此操作的方法:

  1. 首先,仅列出中列出的依赖项main.js 的 require 及其自己的依赖项将被包含在内。
  2. 假设您在 /other/ 中有一个依赖项,但您仍然不希望它们出现,您可以使用浅异常,或者在 require.js 中定义它们配置路径并使用 empty: 方案。

Yes, the documentation provides you with several ways of doing this:

  1. for a start only the dependencies listed in main.js's require and their own dependencies will be included.
  2. Assuming that what you have in /other/ is a dependency but you still don't want them in, you can use shallow exceptions, or define them in the require.js config paths and use the empty: scheme.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文