关闭:在加载base.js之前更改ENABLE_DEBUG_LOADER?

发布于 2024-12-27 04:33:52 字数 272 浏览 1 评论 0 原文

是否可以在加载 Closure 的 base.js 之前将 ENABLE_DEBUG_LOADER 设置为 false 以防止 base.js尝试加载deps.js

我想要这个是因为我想构建一个源代码发行版,它只是运行 cat $(depswriter.py ...) 的结果(因为我想要一个单文件发行版,但我不不想压缩/优化它,因为这会使调试变得困难)。

Is it possible to set the ENABLE_DEBUG_LOADER to false before Closure's base.js is loaded to prevent base.js from attempting to load deps.js?

I want this because I'd like to build a source distribution which is just the result of running cat $(depswriter.py ...) (because I want a single-file distribution, but I don't want to compress/optimize it because that will make debugging difficult).

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

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

发布评论

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

评论(1

如歌彻婉言 2025-01-03 04:33:52

您可以将 CLOSURE_NO_DEPS 设置为 true,又名: var CLOSURE_NO_DEPS = true;

必须为 Rails sprocket 插件处理这个问题:https://github.com/igrigorik/closure-sprockets/commit/6a13edf63e7b1cf9098c6c87e96576e064d09251

You can set CLOSURE_NO_DEPS to true, aka: var CLOSURE_NO_DEPS = true;

Had to deal with this for Rails sprocket plugin: https://github.com/igrigorik/closure-sprockets/commit/6a13edf63e7b1cf9098c6c87e96576e064d09251

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文