feat: unwrap project namespaces to flat exports + barrel (#22743)
This commit is contained in:
parent
0beaf04df5
commit
a427a28fa9
18 changed files with 636 additions and 638 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { describe, expect, test } from "bun:test"
|
||||
import { Project } from "../../src/project/project"
|
||||
import { Project } from "../../src/project"
|
||||
import { Database, eq } from "../../src/storage/db"
|
||||
import { SessionTable } from "../../src/session/session.sql"
|
||||
import { ProjectTable } from "../../src/project/project.sql"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { describe, expect, test } from "bun:test"
|
||||
import { Project } from "../../src/project/project"
|
||||
import { Project } from "../../src/project"
|
||||
import { Log } from "../../src/util"
|
||||
import { $ } from "bun"
|
||||
import path from "path"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import { AppRuntime } from "../../src/effect/app-runtime"
|
|||
import { FileWatcher } from "../../src/file/watcher"
|
||||
import { Instance } from "../../src/project/instance"
|
||||
import { GlobalBus } from "../../src/bus/global"
|
||||
import { Vcs } from "../../src/project/vcs"
|
||||
import { Vcs } from "../../src/project"
|
||||
|
||||
// Skip in CI — native @parcel/watcher binding needed
|
||||
const describeVcs = FileWatcher.hasNativeBinding() && !process.env.CI ? describe : describe.skip
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue