You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
improvement(audits): eliminate repeated parsing and scans (#7361)
* improvement(audits): eliminate repeated parsing and scans
* fix(audits): resolve local bins under vitest
* fix(audits): include drizzle subpath imports
Copy file name to clipboardExpand all lines: package.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,10 @@
14
14
"dev:sockets": "cd apps/realtime && bun run dev",
15
15
"dev:full": "bunx concurrently -n \"App,Realtime\" -c \"cyan,magenta\"\"cd apps/sim && bun run dev\"\"cd apps/realtime && bun run dev\"",
16
16
"dev:full:capped": "bunx concurrently -n \"App,Realtime\" -c \"cyan,magenta\"\"cd apps/sim && bun run dev:capped\"\"cd apps/realtime && bun run dev\"",
17
-
"test": "bun run test:setup && bun run test:npm-package-versions && bun run test:icon-path-precision && bun run test:tool-registry-boundary && bun run test:tool-request-boundary && bun run test:actorless-executor-operations && bun run test:permission-group-enforcement && bun run test:capability-subject && bun run test:application-graph && bun run test:migrations-safety && bun run test:generators && turbo run test",
17
+
"test": "bun run test:setup && bun run test:npm-package-versions && bun run test:audit-candidates && bun run test:icon-path-precision && bun run test:tool-registry-boundary && bun run test:tool-request-boundary && bun run test:actorless-executor-operations && bun run test:permission-group-enforcement && bun run test:capability-subject && bun run test:application-graph && bun run test:migrations-safety && bun run test:generators && turbo run test",
18
18
"test:setup": "bun run --cwd packages/sim-setup test",
19
19
"test:npm-package-versions": "bunx vitest run scripts/bump-npm-package-versions.test.ts",
20
+
"test:audit-candidates": "bunx vitest run scripts/check-db-audit-candidates.test.ts scripts/check-egress-boundary.test.ts",
20
21
"test:icon-path-precision": "bunx vitest run scripts/check-icon-path-precision.test.ts",
21
22
"test:tool-registry-boundary": "bunx vitest run scripts/check-tool-registry-boundary.test.ts",
22
23
"test:tool-request-boundary": "bunx vitest run scripts/check-tool-request-boundary.test.ts",
0 commit comments