Skip to content

Commit bcb177e

Browse files
Fix issues associated with running locally (#840)
* Fix issues associated with running locally I wanted to run Docusaurus locally but kept getting Error: error:0308010C:digital envelope routines::unsupported at String.replace (<anonymous>). This is apparently an issue due to using vulnerable dependencies that rely on outdated TLS standards. So I ran `yarn-audit-fix`, this error went away, and our dependencies are patched to later versions. I haven't done any additional testing beyond that, so I'm not sure if there are undesirable side effects from this change. * Remove yarn-audit-fix from package.json * Remove .gitignore change --------- Co-authored-by: Oreoluwa Agunbiade <[email protected]>
1 parent 5fb3036 commit bcb177e

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Diff for: .gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ build/
8282
*.iml
8383

8484
# VS Code files
85-
.vscode
85+
.vscode

Diff for: yarn.lock

+11-2
Original file line numberDiff line numberDiff line change
@@ -2096,7 +2096,7 @@
20962096
"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
20972097
version "0.3.18"
20982098
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
2099-
integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
2099+
integrity "sha1-JXg7IIba9v8dy1PJJJrkgOTdTNY= sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="
21002100
dependencies:
21012101
"@jridgewell/resolve-uri" "3.1.0"
21022102
"@jridgewell/sourcemap-codec" "1.4.14"
@@ -9435,7 +9435,7 @@ schema-utils@^2.6.5:
94359435
ajv "^6.12.4"
94369436
ajv-keywords "^3.5.2"
94379437

9438-
schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.1.2:
9438+
schema-utils@^3.0.0, schema-utils@^3.1.1:
94399439
version "3.2.0"
94409440
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.2.0.tgz#7dff4881064a4f22c09f0c6a1457feb820fd0636"
94419441
integrity sha512-0zTyLGyDJYd/MBxG1AhJkKa6fpEBds4OQO2ut0w7OYG+ZGhGea09lijvzsqegYSik88zc7cUtIlnnO+/BvD6gQ==
@@ -9444,6 +9444,15 @@ schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.1.2:
94449444
ajv "^6.12.5"
94459445
ajv-keywords "^3.5.2"
94469446

9447+
schema-utils@^3.1.2:
9448+
version "3.1.2"
9449+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.2.tgz#36c10abca6f7577aeae136c804b0c741edeadc99"
9450+
integrity "sha1-NsEKvKb3V3rq4TbIBLDHQe3q3Jk= sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg=="
9451+
dependencies:
9452+
"@types/json-schema" "^7.0.8"
9453+
ajv "^6.12.5"
9454+
ajv-keywords "^3.5.2"
9455+
94479456
schema-utils@^4.0.0:
94489457
version "4.1.0"
94499458
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.1.0.tgz#4cff1e434c12ed39502378b9a3e24787b37df41d"

0 commit comments

Comments
 (0)