gpt4 book ai didi

javascript - 使用 Closure Library 构建库

转载 作者:行者123 更新时间:2023-12-03 09:30:11 25 4
gpt4 key购买 nike

我正在尝试使用闭包库“构建”我的项目;可悲的是,经过多次测试,我无法毫无问题地构建一些东西。我的项目是一个库,所以我没有入口点或类似的东西,大部分代码都是由用户的对象和函数组成的。

我有一个这样的项目:

 - build
- build.sh
- compiler.jar
- libs
- closure-library
- src

我的build.sh文件:

java -jar compiler.jar --compilation_level SIMPLE_OPTIMIZATIONS --js_output_file out.js `find ../src/ -name '*.js'`

使用此命令行我收到错误:goog.require('goog.vec.Vec2');;所以我想我需要在这一行中包含谷歌闭包库,对吗?

所以,我尝试将 build.sh 更改为类似的内容(添加了closure-library文件夹):

java -jar compiler.jar --compilation_level SIMPLE_OPTIMIZATIONS --js_output_file out.js `find ../src/ ../libs/closure-library/closure/ -name '*.js'`

使用这个脚本,我从闭包库中得到了很多这样的错误:

../libs/closure-library/closure/goog/i18n/datetimeformat_test.js:572: ERROR - This style of octal literal is not supported in strict mode.
var date = new Date(Date.UTC(2015, 11 - 1, 01, 11, 0, 1));

我的结果文件(out.js)没有包含我的库的所有功能。我不确定问题出在哪里。

  • 我真的必须在构建部分包含 google 闭包吗?
  • 我正在开发一个 Javascript 库,因此我没有入口点,所有代码都必须包含在生成的文件中。那么,我该怎么做呢?

感谢您的宝贵时间!

编辑:我尝试了不同的方法:删除所有像“goog.require('goog.vec.Mat4');”这样的行从我的图书馆。构建已成功完成,但我的模拟不再起作用:无法读取未定义的属性“Mat4”

最佳答案

您正在寻找的功能记录在 GitHub wiki 下的 Manage Closure Dependencies

确定依赖关系

1。您的库源代码包含 goog.provide 语句

在这种情况下,您可以将 --only_closure_dependencies--closure_entry_point 标志结合使用。您的“入口”点是库中您想要计算依赖关系的任何类。您可以有多个入口点。

2。您的库源代码不包含 goog.provide 语句

使用--manage_closure_dependency标志。这指示编译器在输出中包含任何不包含 goog.provide 语句的 JS 文件,并根据这些文件中的 goog.require 语句计算所有所需的依赖项文件。

向编译器提供文件

Closure-compiler 的 --js 输入标志可以指定 minimatch glob 样式模式,这是提供 Closure-library 文件作为输入的首选方法。如果您使用 --manage_closure_dependencies 选项,则必须排除 Closure-library 测试文件。

示例:

java -jar compiler.jar --compilation_level=SIMPLE_OPTIMIZATIONS
--js_output_file=out.js
--manage_closure_dependencies
--js='../src/**.js'
--js='../libs/closure-library/**.js'
--js='!../libs/closure-library/**_test.js'

关于javascript - 使用 Closure Library 构建库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31538528/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com