refactor(web): move website into turbo app workspace
This commit is contained in:
parent
2664804e91
commit
b4e626a868
66 changed files with 318 additions and 298 deletions
|
|
@ -2,7 +2,9 @@ import { existsSync, readFileSync } from "node:fs";
|
|||
import { join } from "node:path";
|
||||
import { describe, expect, test } from "vitest";
|
||||
|
||||
const root = process.cwd();
|
||||
const root = existsSync(join(process.cwd(), "turbo.json"))
|
||||
? process.cwd()
|
||||
: join(process.cwd(), "..", "..");
|
||||
|
||||
describe("workspace boundaries", () => {
|
||||
test("declares the root as a turbo-managed bun workspace", () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue