chore: update script name

This commit is contained in:
DIYgod 2025-01-10 17:33:16 +08:00
parent fe87c528e2
commit fb00346ec8
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -104,7 +104,7 @@ pnpm install
### Develop in the browser
```sh
pnpm run dev:web
pnpm run dev
```
Then the browser opens `https://app.follow.is/__debug_proxy`you can access the online API environment to development and debugging.
@ -120,7 +120,7 @@ cp .env.example .env
Then set `VITE_API_URL` to `https://api.follow.is` and run:
```sh
pnpm run dev
pnpm run dev:electron
```
Since it is not very convenient to develop in Electron, the first way to develop and contribute is recommended at this stage.

View File

@ -23,12 +23,12 @@
"bump": "vv",
"dedupe:locales": "eslint --fix locales/**/*.json",
"depcheck": "npx depcheck --quiet",
"dev": "electron-vite dev",
"dev": "turbo run @follow/web#dev @follow/server#dev",
"dev:debug": "export DEBUG=true && vite --debug",
"dev:electron": "electron-vite dev",
"dev:expo": "pnpm --filter=mobile start",
"dev:server": "pnpm run --filter=server dev",
"dev:web": " WEB_BUILD=1 vite",
"dev:web-with-server": "turbo run @follow/web#dev @follow/server#dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generator:i18n-template": "tsx scripts/generate-i18n-locale.ts",