1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/tools/sync_third_party.py

20 lines
528 B
Python
Raw Normal View History

#!/usr/bin/env python
2018-10-19 15:25:29 -04:00
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
# 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
2018-11-30 03:27:41 -05:00
# find . -type f | grep -v "\.git" | \
# xargs -I% git add -f --no-warn-embedded-repo "%"
import third_party
import util
util.enable_ansi_colors()
third_party.fix_symlinks()
third_party.run_yarn()
third_party.run_cargo()
2018-10-21 21:47:34 -04:00
third_party.run_pip()
third_party.run_gclient_sync()