1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/tools/sync_third_party.py

14 lines
392 B
Python
Raw Normal View History

#!/usr/bin/env python
# Run this script if you are changing Deno's dependencies.
2018-07-13 03:24:07 -04:00
# To update the deno_third_party git repo after running this, try the following:
# cd third_party
# find . -type f | grep -v "\.git" | xargs -I% git add -f --no-warn-embedded-repo "%"
import third_party
third_party.fix_symlinks()
third_party.run_yarn()
third_party.run_cargo()
third_party.run_gclient_sync()