blob: 697470a49988bc3719f9cbe8faa9a6e8f83b03e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python
# Run this script if you are changing Deno's dependencies.
# 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
import util
util.enable_ansi_colors()
third_party.fix_symlinks()
third_party.run_yarn()
third_party.run_cargo()
third_party.run_gclient_sync()
|