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多くの場合、1 つのフラグ を使用してプロジェクト全体を指定できます。

于 2012-05-28T18:50:54.530 に答える