Skip to content

Commit

Permalink
Remove yarn.lock
Browse files Browse the repository at this point in the history
Fixes #393.
  • Loading branch information
ry committed Aug 8, 2018
1 parent 817380a commit 942b309
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 674 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,6 +3,7 @@
*.pyc
gclient_config.py_entries
Cargo.lock
yarn.lock
# npm deps
node_modules

Expand Down
2 changes: 1 addition & 1 deletion third_party
Submodule third_party updated 1 files
+0 −1 yarn.lock
3 changes: 1 addition & 2 deletions tools/third_party.py
Expand Up @@ -47,7 +47,6 @@ def fix_symlinks():

# Make symlinks to Yarn metadata living in the root repo.
remove_and_symlink("../package.json", tp("package.json"))
remove_and_symlink("../yarn.lock", tp("yarn.lock"))

# TODO(ry) Is it possible to remove these symlinks?
remove_and_symlink("v8/third_party/googletest", tp("googletest"), True)
Expand All @@ -70,7 +69,7 @@ def fix_symlinks():

# Run Yarn to install JavaScript dependencies.
def run_yarn():
run(["yarn"], cwd=third_party_path)
run(["yarn", "--no-lockfile"], cwd=third_party_path)


# Run Cargo to install Rust dependencies.
Expand Down

0 comments on commit 942b309

Please sign in to comment.