Skip to content

Commit

Permalink
turbo tsc-build works
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexErrant committed Sep 6, 2024
1 parent f03a34f commit 6f7e0de
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
tsconfig.tsbuildinfo
data.sqld
.wrangler
.turbo
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"eslint:fix": "pnpm --parallel --no-bail -r eslint:fix --max-warnings 0",
"eslint+test": "concurrently -p \"[{name}]\" -n \"lint,test,check\" -c \"bgBlue.bold,bgGreen.bold,bgMagenta.bold\" \"pnpm eslint\" \"pnpm test\" \"pnpm --filter pentive-svelte-plugin-example check\"",
"test": "pnpm --parallel --no-bail -r test:run",
"tsc-build": "tsc --build",
"tsc-build": "turbo tsc-build",
"tsc-clean": "rm -rf **/tsconfig.tsbuildinfo",
"//ci": "simulate cicd locally",
"ci": "git clean -xdf && ./mkenv.sh && ./rmcert.sh && ./mkcert.sh && pnpm i && pnpm tsc-build && pnpm eslint+test && pnpm build && ./initIvy.sh",
Expand Down
12 changes: 12 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"tsc-build": {
"dependsOn": ["transit"],
"outputs": ["lib/**"]
},
"transit": {
"dependsOn": ["^transit"]
}
}
}

0 comments on commit 6f7e0de

Please sign in to comment.