Merge pull request #87 from tiktok/fix-website-build

fix: website build
This commit is contained in:
Cheng Liu 2024-08-29 12:25:55 -07:00 committed by GitHub
commit cd624c81e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 28 additions and 4 deletions

View file

@ -221,7 +221,7 @@
* *
* PNPM documentation: https://pnpm.io/package_json#pnpmpatcheddependencies * PNPM documentation: https://pnpm.io/package_json#pnpmpatcheddependencies
*/ */
"globalPatchedDependencies": {}, "globalPatchedDependencies": { "lunr@2.3.9": "patches/lunr@2.3.9.patch" },
/** /**
* (USE AT YOUR OWN RISK) This is a free-form property bag that will be copied into * (USE AT YOUR OWN RISK) This is a free-form property bag that will be copied into

View file

@ -4,6 +4,11 @@ settings:
autoInstallPeers: false autoInstallPeers: false
excludeLinksFromLockfile: false excludeLinksFromLockfile: false
patchedDependencies:
lunr@2.3.9:
hash: pgt6qd4rzkalm6lxuf4rydzxte
path: patches/lunr@2.3.9.patch
importers: importers:
.: {} .: {}
@ -116,7 +121,7 @@ importers:
version: 3.3.2(@docusaurus/core@3.1.1)(react-dom@18.2.0)(react@18.2.0) version: 3.3.2(@docusaurus/core@3.1.1)(react-dom@18.2.0)(react@18.2.0)
lunr: lunr:
specifier: ^2.3.9 specifier: ^2.3.9
version: 2.3.9 version: 2.3.9(patch_hash=pgt6qd4rzkalm6lxuf4rydzxte)
lunr-languages: lunr-languages:
specifier: ^1.14.0 specifier: ^1.14.0
version: 1.14.0 version: 1.14.0
@ -5836,7 +5841,7 @@ packages:
hast-util-select: 4.0.2 hast-util-select: 4.0.2
hast-util-to-text: 2.0.1 hast-util-to-text: 2.0.1
hogan.js: 3.0.2 hogan.js: 3.0.2
lunr: 2.3.9 lunr: 2.3.9(patch_hash=pgt6qd4rzkalm6lxuf4rydzxte)
lunr-languages: 1.14.0 lunr-languages: 1.14.0
mark.js: 8.11.1 mark.js: 8.11.1
minimatch: 3.1.2 minimatch: 3.1.2
@ -8673,9 +8678,10 @@ packages:
resolution: {integrity: sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==} resolution: {integrity: sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==}
dev: false dev: false
/lunr@2.3.9: /lunr@2.3.9(patch_hash=pgt6qd4rzkalm6lxuf4rydzxte):
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
dev: false dev: false
patched: true
/make-dir@3.1.0: /make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}

View file

@ -0,0 +1,18 @@
diff --git a/.npmignore b/.npmignore
deleted file mode 100644
index dee86324b64e82374e8a5bc6bee027bbec12022c..0000000000000000000000000000000000000000
diff --git a/lunr.js b/lunr.js
index 6aa370fbcb7b1b94eb8a19c433a5038352183b2a..a1bbd049d275fbdca3cf904f494a86ae1f305a00 100644
--- a/lunr.js
+++ b/lunr.js
@@ -76,8 +76,8 @@ lunr.utils = {}
lunr.utils.warn = (function (global) {
/* eslint-disable no-console */
return function (message) {
- if (global.console && console.warn) {
- console.warn(message)
+ if (global.console && console.log) {
+ console.log('[WARN]', message)
}
}
/* eslint-enable no-console */