8

我想使用Google Closure Compiler来构建一组CommonJS模块。这可以开箱即用吗?或者,是否可以对 CommonJS 模块进行一些简单的转换,以允许 Closure Compiler 使用它们?

4

1 回答 1

6

已向 Closure Compiler 添加了支持,以便使用以下编译器标志更轻松地使用Common JSAMD/require.js模块:

  • --transform_amd_modules
  • --process_common_js_modules
  • --common_js_entry_module
  • --common_js_module_path_prefix

请参阅Closure Compiler 中对 Common JS 和 AMD/require.js 模块的实验性支持

于 2012-07-11T05:17:37.313 回答