Skip to content
Draft
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
13 changes: 13 additions & 0 deletions .fallowrc.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
{
"$schema": "https://raw.githubusercontent.com/fallow-rs/fallow/main/config-schema.json",
"entry": [
// Vitest collects .test.mjs, but fallow's default test-entry detection only
// knows the .ts/.tsx spellings, so this one reads as an unreachable file.
"packages/studio/scripts/*.test.mjs",
// The KTD6 dismiss-spike fixture. scripts/menu-dismiss-spike.mjs injects it
// into a running Studio by importing it from the Vite dev server by URL, so
// no TypeScript import reaches its mount function.
"packages/studio/src/components/ui/menuDismissSpikeMount.tsx",
// The shared-primitive barrel. Studio's panels move onto Button, IconButton,
// Tabs and Tooltip folder by folder, so a primitive is exported here before
// its first consumer exists. Treating the barrel as an entry point is what
// the alternative (an inline suppression per export, deleted again a week
// later) was pretending to be.
"packages/studio/src/components/ui/index.ts",
"packages/producer/src/**/*.test.ts",
"packages/aws-lambda/src/**/*.test.ts",
"packages/gcp-cloud-run/src/**/*.test.ts",
Expand Down
36 changes: 20 additions & 16 deletions bun.lock

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

1 change: 1 addition & 0 deletions packages/studio/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ dist/
node_modules/
data/projects/
tests/e2e/evidence/
.design-shots/
4 changes: 4 additions & 0 deletions packages/studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,16 @@
"build": "vite build && tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"design:shots": "node scripts/design-shots.mjs",
"spike:menu-dismiss": "node scripts/menu-dismiss-spike.mjs",
"test:webmcp-edit-loop": "node tests/e2e/webmcp-edit-loop.mjs",
"test:timeline-virtualization": "TIMELINE_ROW_VIRTUALIZATION=on TIMELINE_ELEMENT_COUNT=50000 node tests/e2e/timeline-virtualization.mjs",
"test:watch": "vitest",
"report:sdk-cutover": "bun src/utils/sdkCutoverPolicy.report.ts",
"test:timeline-default": "bun run test:timeline-virtualization"
},
"dependencies": {
"@base-ui/react": "1.7.0",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
Expand All @@ -78,6 +81,7 @@
"@phosphor-icons/react": "^2.1.10",
"@tanstack/react-virtual": "^3.14.6",
"bpm-detective": "^2.0.5",
"cn": "0.2.4",
"dompurify": "^3.2.4",
"gsap": "^3.13.0",
"marked": "^14.1.4",
Expand Down
Loading
Loading