|
37 | 37 | "test:coverage": "jest --runInBand --coverage --testPathIgnorePatterns=\"test/integration|test/deno\"", |
38 | 38 | "test:integration": "jest --runInBand --detectOpenHandles test/integration.test.ts", |
39 | 39 | "test:integration:browser": "deno test --allow-all test/integration.browser.test.ts", |
40 | | - "test:edge-functions": "deno test --allow-all --no-check --unstable-sloppy-imports --config test/deno/deno.json test/deno/edge-functions-integration.test.ts", |
| 40 | + "test:edge-functions": "cd test/deno && npm run test:edge-functions", |
41 | 41 | "test:watch": "jest --watch --verbose false --silent false", |
42 | 42 | "test:node:playwright": "cd test/integration/node-browser && npm install && cp ../../../dist/umd/supabase.js . && npm run test", |
43 | 43 | "test:bun": "cd test/integration/bun && bun install && bun test", |
44 | 44 | "test:types": "tsd --files test/types/*.test-d.ts && jsr publish --dry-run --allow-dirty", |
45 | 45 | "docs": "typedoc --entryPoints src/index.ts --out docs/v2", |
46 | 46 | "docs:json": "typedoc --entryPoints src/index.ts --json docs/v2/spec.json --excludeExternals", |
47 | 47 | "serve:coverage": "npx nx test:coverage supabase-js && serve test/coverage", |
48 | | - "update:test-deps": "npx nx build supabase-js && npm pack && cp supabase-supabase-js-*.tgz test/integration/expo/supabase-supabase-js-0.0.0-automated.tgz && cp supabase-supabase-js-*.tgz test/integration/next/supabase-supabase-js-0.0.0-automated.tgz && cp supabase-supabase-js-*.tgz test/deno/supabase-supabase-js-0.0.0-automated.tgz && cp supabase-supabase-js-*.tgz test/integration/bun/supabase-supabase-js-0.0.0-automated.tgz && cd test/integration/expo && npm install && cd ../next && npm install --legacy-peer-deps && cd ../../deno && npm install && cd ../integration/bun && bun install", |
49 | | - "update:test-deps:expo": "npx nx build supabase-js && npm pack && cp supabase-supabase-js-*.tgz test/integration/expo/supabase-supabase-js-0.0.0-automated.tgz && cd test/integration/expo && npm install", |
50 | | - "update:test-deps:next": "npx nx build supabase-js && npm pack && cp supabase-supabase-js-*.tgz test/integration/next/supabase-supabase-js-0.0.0-automated.tgz && cd test/integration/next && npm install --legacy-peer-deps", |
51 | | - "update:test-deps:deno": "npx nx build supabase-js && npm pack && cp supabase-supabase-js-*.tgz test/deno/supabase-supabase-js-0.0.0-automated.tgz && cd test/deno && npm install", |
52 | | - "update:test-deps:bun": "npx nx build supabase-js && npm pack && cp supabase-supabase-js-*.tgz test/integration/bun/supabase-supabase-js-0.0.0-automated.tgz && cd test/integration/bun && bun install" |
| 48 | + "update:test-deps": "npm run update:test-deps:expo && npm run update:test-deps:next && npm run update:test-deps:deno && npm run update:test-deps:bun", |
| 49 | + "update:test-deps:expo": "cd test/integration/expo && npm install", |
| 50 | + "update:test-deps:next": "cd test/integration/next && npm install --legacy-peer-deps", |
| 51 | + "update:test-deps:deno": "cd test/deno && npm install", |
| 52 | + "update:test-deps:bun": "cd test/integration/bun && bun install" |
53 | 53 | }, |
54 | 54 | "dependencies": { |
55 | 55 | "@supabase/auth-js": "*", |
|
0 commit comments