Skip to content

Commit

Permalink
chore: update pin dependencies (#9050)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Oct 5, 2022
1 parent d1b61cf commit d4c6ff1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion utils/pin_dependencies.py
Expand Up @@ -32,7 +32,8 @@ def main():
if line.startswith("devDependencies") or line.startswith("dependencies"):
start_replace = True
else:
tmp_file.write(line.replace('^', ''))
line = line.replace('^', '')
tmp_file.write(line)
rename(tmp_file_path, package_json_path)

if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d4c6ff1

Please sign in to comment.