mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-12 17:09:37 +08:00
Replace Yarn usage with pnpm in CI workflows to standardize package management and leverage pnpm's store/cache behavior. - Use pnpm/action-setup to install pnpm (v) instead of enabling corepack and preparing Yarn. - Retrieve pnpm store path and update cache actions to cache the pnpm store and use pnpm-lock.yaml for cache keys and restores. - Replace yarn commands with pnpm equivalents across workflows: install, i18n:sync/translate, format, build:* and tsx invocation. - Avoid committing lockfile changes by resetting pnpm-lock.yaml instead of yarn.lock when checking for changes. - Update install flags: use pnpm install --frozen-lockfile / --install semantics where appropriate. These changes unify dependency tooling, improve caching correctness, and ensure CI uses pnpm-specific lockfile and cache paths.
31 lines
987 B
Diff
31 lines
987 B
Diff
diff --git a/index.js b/index.js
|
|
index dc071739e79876dff88e1be06a9168e294222d13..b9df7525c62bdf777e89e732e1b0c81f84d872f2 100644
|
|
--- a/index.js
|
|
+++ b/index.js
|
|
@@ -380,7 +380,7 @@ if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) {
|
|
}
|
|
}
|
|
|
|
-if (!nativeBinding) {
|
|
+if (!nativeBinding && process.platform !== 'linux') {
|
|
if (loadErrors.length > 0) {
|
|
throw new Error(
|
|
`Cannot find native binding. ` +
|
|
@@ -392,6 +392,13 @@ if (!nativeBinding) {
|
|
throw new Error(`Failed to load native binding`)
|
|
}
|
|
|
|
-module.exports = nativeBinding
|
|
-module.exports.OcrAccuracy = nativeBinding.OcrAccuracy
|
|
-module.exports.recognize = nativeBinding.recognize
|
|
+if (process.platform === 'linux') {
|
|
+ module.exports = {OcrAccuracy: {
|
|
+ Fast: 0,
|
|
+ Accurate: 1
|
|
+ }, recognize: () => Promise.resolve({text: '', confidence: 1.0})}
|
|
+}else{
|
|
+ module.exports = nativeBinding
|
|
+ module.exports.OcrAccuracy = nativeBinding.OcrAccuracy
|
|
+ module.exports.recognize = nativeBinding.recognize
|
|
+}
|