Skip to content

Commit

Permalink
fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul committed Feb 12, 2025
1 parent 7a10a61 commit b6eb5f9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
"version": "3.2.2",
"surreal": "2.0.0",
"type": "module",
"authors": [
"SurrealDB"
],
"authors": ["SurrealDB"],
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
Expand Down Expand Up @@ -54,7 +52,7 @@
"@sigma/node-border": "^3.0.0",
"@surrealdb/codemirror": "1.0.0-beta.20",
"@surrealdb/lezer": "1.0.0-beta.20",
"@surrealdb/ql-wasm": "0.2.0-beta.9",
"@surrealdb/ql-wasm": "0.2.0-beta.10",
"@surrealdb/wasm": "1.2.0",
"@tanstack/react-query": "^5.37.1",
"@tauri-apps/api": "2.0.0-rc.4",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

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

8 changes: 7 additions & 1 deletion src/screens/surrealist/connection/surreal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ export async function createSurreal() {

return new CustomSurreal({
engines: surrealdbWasmEngines({
capabilities: true,
capabilities: {
experimental: true,
functions: true,
guest_access: true,
live_query_notifications: true,
network_targets: true,
},
}),
});
}

0 comments on commit b6eb5f9

Please sign in to comment.