我正在尝试编译一个简单的闭包项目,但是我收到了这个错误:
build/closure-library/closure/bin/build/closurebuilder.py:
Compiling with the following command:
java -client -jar build/compiler.jar
--js build/closure-library/closure/goog/base.js
--js js/index.js
--manage_closure_dependencies=true
--transform_amd_modules
--process_common_js_modules
--common_js_entry_module
--common_js_module_path_prefix
--language_in=ECMASCRIPT5_STRICT
--compilation_level=SIMPLE_OPTIMIZATIONS
ERROR - required entry point "goog" never provided
正如您所看到的,java命令包含base.js,其中定义了goog,因此我不知道发生了什么。
答案 0 :(得分:1)
我从使用封面编译器的bower版本切换到只是克隆实际来源:https://github.com/google/closure-compiler并自己构建它,并且它有效。