diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-06-11 18:03:05 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-12 10:57:58 -0400 |
commit | 8693d0e0a7d7ce1e4533aef30c1a735276e3009b (patch) | |
tree | 3d555c721c2eb7149fa89913877012cf74377ccc /tools/sync_node_modules.py | |
parent | 7bdeee8997bde0efe40bcec41c0706bdab58893b (diff) |
Split up tools/sync_third_party
This is just encoding my actual workflow; not suggesting that this
workflow is ideal. Previously I would edit sync_third_party.py each time
I ran it.
Diffstat (limited to 'tools/sync_node_modules.py')
-rwxr-xr-x | tools/sync_node_modules.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/sync_node_modules.py b/tools/sync_node_modules.py new file mode 100755 index 000000000..5c5705d9a --- /dev/null +++ b/tools/sync_node_modules.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +import third_party +import util +util.enable_ansi_colors() +third_party.run_yarn() |