2018-07-04 09:04:59 -04:00
|
|
|
#!/usr/bin/env python
|
2018-10-19 15:25:29 -04:00
|
|
|
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-07-25 04:17:44 -04:00
|
|
|
# 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 "%"
|
2018-07-25 04:17:44 -04:00
|
|
|
|
|
|
|
import third_party
|
2018-09-02 17:37:14 -04:00
|
|
|
import util
|
|
|
|
|
|
|
|
util.enable_ansi_colors()
|
2018-07-25 04:17:44 -04:00
|
|
|
|
|
|
|
third_party.fix_symlinks()
|
|
|
|
|
|
|
|
third_party.run_yarn()
|
|
|
|
third_party.run_cargo()
|
2018-10-21 21:47:34 -04:00
|
|
|
third_party.run_pip()
|
2018-07-25 04:17:44 -04:00
|
|
|
third_party.run_gclient_sync()
|