chore: update pin dependencies (#9050)

This commit is contained in:
jrandolf 2022-10-05 15:57:31 +02:00 committed by GitHub
parent d1b61cf108
commit d4c6ff1268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -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__":

View File

@ -12,7 +12,7 @@
"@docusaurus/preset-classic": "2.0.1",
"@easyops-cn/docusaurus-search-local": "0.26.1",
"@mdx-js/react": "1.6.22",
"clsx": "^1.2.1",
"clsx": "1.2.1",
"prism-react-renderer": "1.3.5",
"react": "17.0.2",
"react-dom": "17.0.2"