Update stuff so we can pass build hopefully
This commit is contained in:
+10
-9
@@ -58,25 +58,26 @@
|
||||
"dev:backend": "turbo run dev -F @spoon/backend",
|
||||
"dev:staging": "INFISICAL_ENV=staging turbo run dev -F @spoon/next -F @spoon/backend",
|
||||
"dev:expo:tunnel": "turbo run dev:tunnel -F @spoon/expo -F @spoon/backend",
|
||||
"codegen:convex": "bash scripts/convex-codegen",
|
||||
"sync:convex": "scripts/sync-convex-env ${INFISICAL_ENV:-dev}",
|
||||
"db:up": "bash scripts/db/up",
|
||||
"db:down": "bash scripts/db/down",
|
||||
"db:down:wipe": "bash scripts/db/down --wipe",
|
||||
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
|
||||
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
|
||||
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
|
||||
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
|
||||
"lint": "bun codegen:convex && turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
|
||||
"lint:fix": "bun codegen:convex && turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
|
||||
"lint:ws": "bunx sherif@latest",
|
||||
"patch:usesend": "node scripts/patch-usesend.mjs",
|
||||
"postinstall": "bun patch:usesend && bun lint:ws",
|
||||
"typecheck": "turbo run typecheck",
|
||||
"test": "turbo run test:unit test:integration test:component",
|
||||
"test:unit": "turbo run test:unit",
|
||||
"test:integration": "turbo run test:integration",
|
||||
"test:component": "turbo run test:component",
|
||||
"typecheck": "bun codegen:convex && turbo run typecheck",
|
||||
"test": "bun codegen:convex && turbo run test:unit test:integration test:component",
|
||||
"test:unit": "bun codegen:convex && turbo run test:unit",
|
||||
"test:integration": "bun codegen:convex && turbo run test:integration",
|
||||
"test:component": "bun codegen:convex && turbo run test:component",
|
||||
"test:e2e": "bash scripts/e2e",
|
||||
"test:all": "turbo run test:unit test:integration test:component && bun test:e2e",
|
||||
"ci:check": "bun lint:ws && turbo run lint typecheck test:unit test:integration test:component --concurrency=2 && bun test:e2e",
|
||||
"test:all": "bun codegen:convex && turbo run test:unit test:integration test:component && bun test:e2e",
|
||||
"ci:check": "bun codegen:convex && bun lint:ws && turbo run lint typecheck test:unit test:integration test:component --concurrency=2 && bun test:e2e",
|
||||
"prepare": "husky",
|
||||
"ui-add": "turbo run ui-add",
|
||||
"android": "expo run:android",
|
||||
|
||||
Reference in New Issue
Block a user