Windows 7 で「closure-library\closure\bin\build\depswriter.py」を使用して deps.js ファイルを作成しようとしました。私の python バージョンは 2.7.3 です。「コマンドラインが長すぎる」と不平を言っています。
Linuxでは完全に正常に動作します。
Windowsで動作させるためのソリューション。
Windows 7 で「closure-library\closure\bin\build\depswriter.py」を使用して deps.js ファイルを作成しようとしました。私の python バージョンは 2.7.3 です。「コマンドラインが長すぎる」と不平を言っています。
Linuxでは完全に正常に動作します。
Windowsで動作させるためのソリューション。
で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 つのフラグ
を使用してプロジェクト全体を指定できます。