Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Migrating off Closure Python Scripts

Kelvin Jin edited this page Apr 13, 2021 · 4 revisions

We are planning to deprecate and remove the Python helper scripts closure/bin/**/*.py from the Closure Library GitHub repository. These are old scripts that have obsoleted by other, actively maintained solutions:

closure/bin/build/closurebuilder.py: A convenience wrapper around Closure Compiler itself; users are encouraged to move to directly invoking Closure Compiler (this is mentioned in a warning emitted by the Python script). closure/bin/build/depswriter.py: A tool to write deps.js files; users are encouraged to use google-closure-deps (a re-implementation in JavaScript) instead. closure/bin/build/*.py (remaining files): These are helpers for the other scripts in the same directory. If you have scripts that depend on these files, please fork them into your own repository. closure/bin/calcdeps.py: Obsoleted by closure/bin/build/closurebuilder.py, which is listed above.

For anyone who is using any of these files, please move to the suggested alternatives as soon as possible. If you find that your usage is not covered by the suggested alternatives, please let us know by filing a GitHub issue.

We will keep this GitHub Wiki article up-to-date with details on migration as they come up.