Skip to content

Commit cde5eef

Browse files
committed
refactor(turbo.json): format task configurations for improved readability
- Reformatted task configurations in turbo.json for consistency and clarity. - Adjusted indentation and line breaks in the "dependsOn", "outputs", and "passThroughEnv" fields across multiple tasks. - Ensured all tasks maintain a uniform structure for easier maintenance and understanding.
1 parent 2ec75e8 commit cde5eef

File tree

5 files changed

+171
-1485
lines changed

5 files changed

+171
-1485
lines changed

package.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
11
{
22
"name": "lean-spec",
3+
"private": true,
4+
"packageManager": "[email protected]",
35
"devDependencies": {
46
"husky": "^9.1.7"
57
},
68
"scripts": {
7-
"prepare": "husky"
9+
"prepare": "husky",
10+
"dev": "turbo run dev --filter=@leanspec/ui-vite --filter=@leanspec/http-server",
11+
"dev:web": "turbo run dev:web --filter=@leanspec/ui-vite",
12+
"dev:desktop": "turbo run dev:desktop --filter=@leanspec/desktop",
13+
"build": "turbo run build",
14+
"build:rust": "cd rust && cargo build --release && cd .. && node scripts/copy-rust-binaries.mjs",
15+
"test": "turbo run test",
16+
"test:api": "turbo run test:api --filter=@leanspec/api-contracts",
17+
"test:watch": "vitest",
18+
"test:ui": "vitest --ui",
19+
"test:coverage": "vitest run --coverage",
20+
"typecheck": "turbo run typecheck",
21+
"lint": "turbo run lint",
22+
"format": "turbo run format",
23+
"clean": "turbo run clean && cargo clean --manifest-path rust/Cargo.toml",
24+
"docs:dev": "pnpm --filter docs-site start",
25+
"docs:build": "pnpm --filter docs-site build",
26+
"pre-release": "pnpm build && pnpm typecheck && pnpm test",
27+
"sync:versions": "tsx scripts/sync-versions.ts && tsx scripts/sync-rust-versions.ts",
28+
"cli": "node bin/lean-spec.js"
829
}
930
}

pnpm-lock.yaml

Lines changed: 87 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
packages:
22
- packages/*
3+
- tests/*
34

45
ignoredBuiltDependencies:
56
- core-js

0 commit comments

Comments
 (0)