summaryrefslogtreecommitdiff
path: root/tools/third_party.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-15 11:57:07 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-17 15:11:32 -0400
commit3f7d61a5890edb1fab62b92332252604e9b07235 (patch)
treeb868f1a029209418f768b670b0589edfe1ba867a /tools/third_party.py
parent67d89ff692a88ae42145043eac1a5c58413ae110 (diff)
Add yarn.lock to third_party
Prevents upgrades with running tools/sync_third_party.py
Diffstat (limited to 'tools/third_party.py')
-rw-r--r--tools/third_party.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/third_party.py b/tools/third_party.py
index 0a053fbcd..e831d57af 100644
--- a/tools/third_party.py
+++ b/tools/third_party.py
@@ -70,7 +70,7 @@ def fix_symlinks():
# Run Yarn to install JavaScript dependencies.
def run_yarn():
- run(["yarn", "--no-lockfile"], cwd=third_party_path)
+ run(["yarn", "install"], cwd=third_party_path)
# Run Cargo to install Rust dependencies.