Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/website-release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Pull Vercel environment information
run: pnpm --filter voltra-website exec vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
run: pnpm dlx vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}

- name: Build project artifacts
run: pnpm --filter voltra-website exec vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
run: pnpm dlx vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}

- name: Deploy prebuilt artifacts to production
run: pnpm --filter voltra-website exec vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
run: pnpm dlx vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
"ts-node": "^10.9.0",
"turbo": "^2.8.3",
"typescript": "~5.9.2",
"react-native-builder-bob": "^0.41.0"
"react-native-builder-bob": "^0.41.0",
"vercel": "54.2.0"
},
"overrides": {
"react": "19.2.4",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ doc_build/
!.vscode/extensions.json
.idea
.vercel
.env*.local
2 changes: 1 addition & 1 deletion website/docs/v2/android/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add `@use-voltra/android-client` to your `app.json` or `app.config.js`:
}
```

See [Plugin Configuration](../api/plugin-configuration) for all options.
See [Plugin Configuration](./api/plugin-configuration) for all options.

## 2. Prebuild for Android

Expand Down
3 changes: 1 addition & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"@shikijs/transformers": "^3.13.0"
},
"devDependencies": {
"@types/node": "^18.11.17",
"vercel": "54.2.0"
"@types/node": "^18.11.17"
}
}
Loading