mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 13:56:15 +00:00
fix(apis/websocket): don't bundle tesseract.js
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
import * as fs from 'fs'
|
||||
|
||||
fs.cpSync('../../node_modules/tesseract.js', './dist/tesseract.js', { recursive: true })
|
||||
@@ -35,8 +35,17 @@ If you're looking to build and host the server somewhere else, you can run:
|
||||
bun bundle
|
||||
```
|
||||
|
||||
The files will be placed in the `dist` directory. **Configurations and `.env` files will NOT be copied automatically.**
|
||||
You can run these files using the command `bun run index.js`.
|
||||
The files will be placed in the `dist` directory. **Configurations and `.env` files will NOT be copied automatically.**
|
||||
|
||||
To start up the server, you'll need to install `tesseract.js` first.
|
||||
```sh
|
||||
bun install tesseract.js
|
||||
# or
|
||||
bun install tesseract.js -g
|
||||
|
||||
# Run the server
|
||||
bun run index.js
|
||||
```
|
||||
|
||||
## ⏭️ What's next
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"description": "🧦 WebSocket API server for bots assisting ReVanced",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"bundle": "bun build src/index.ts --outdir=dist --target=bun && bun run after_build.ts",
|
||||
"bundle": "bun build src/index.ts --outdir=dist --target=bun -e tesseract.js",
|
||||
"dev": "bun run src/index.ts --watch",
|
||||
"build": "bun bundle",
|
||||
"watch": "bun dev"
|
||||
|
||||
@@ -41,8 +41,5 @@
|
||||
"turbo": "^1.13.4",
|
||||
"typescript": "^5.5.2"
|
||||
},
|
||||
"trustedDependencies": ["@biomejs/biome", "esbuild", "lefthook", "tesseract.js"],
|
||||
"patchedDependencies": {
|
||||
"tesseract.js@5.1.0": "patches/tesseract.js@5.1.0.patch"
|
||||
}
|
||||
"trustedDependencies": ["@biomejs/biome", "esbuild", "lefthook"]
|
||||
}
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
diff --git a/src/worker/node/defaultOptions.js b/src/worker/node/defaultOptions.js
|
||||
index 053c1e3e3b561b2e5b5e3609e9c6b509b1661f11..407242f5576f8d888644ab28ff169599a79bf4dd 100644
|
||||
--- a/src/worker/node/defaultOptions.js
|
||||
+++ b/src/worker/node/defaultOptions.js
|
||||
@@ -1,10 +1,13 @@
|
||||
const path = require('path');
|
||||
+const fs = require('fs');
|
||||
const defaultOptions = require('../../constants/defaultOptions');
|
||||
|
||||
+const defaultPath = path.join(import.meta.dir, '..', '..', 'worker-script', 'node', 'index.js')
|
||||
+
|
||||
/*
|
||||
* Default options for node worker
|
||||
*/
|
||||
module.exports = {
|
||||
...defaultOptions,
|
||||
- workerPath: path.join(__dirname, '..', '..', 'worker-script', 'node', 'index.js'),
|
||||
+ workerPath: fs.existsSync(defaultPath) ? defaultPath : path.join(import.meta.dir, 'tesseract.js', 'src', 'worker-script', 'node', 'index.js'),
|
||||
};
|
||||
Reference in New Issue
Block a user