1

我尝试在 Windows 7 中使用 'closure-library\closure\bin\build\depswriter.py' 创建 deps.js 文件。我的 python 版本是 2.7.3。它抱怨“命令行太长”。

它在 Linux 中运行良好。

使其在Windows中工作的任何解决方案。

4

1 回答 1

1

要解决Windows 命令行限制depswriter.py您可以使用以下标志递归扫描目录中的 JavaScript 文件:

--root               A root directory to scan for JS source files. Paths of JS 
                     files in generated deps file will be relative to this path. 
                     This flag may be specified multiple times.  

--root_with_prefix   A root directory to scan for JS source files, plus a prefix
                     (if either contains a space, surround with quotes).  Paths 
                     in generated deps file will be relative to the root, but 
                     preceded by the prefix. This flag may be specified multiple 
                     times.


在许多情况下,可以使用一个--root标志指定整个项目。

于 2012-05-28T18:50:54.530 回答