Skip to content

Commit

Permalink
turbo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adjkant committed Dec 12, 2023
1 parent 5b6905d commit 73da318
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node-version: 18

- name: Install dependencies
run: yarn --frozen-lockfile
run: yarn --immutable

- name: Release
env:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
.yarn/versions
.yarn/install-state.gz

# Turbo
.turbo

# dependencies
node_modules
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"packageManager": "[email protected]",
"private": true,
"scripts": {
"g:build": "turbo run build --concurrency=100%",
"g:build": "turbo run build --parallel",
"g:lint": "turbo run lint --parallel",
"g:release": "turbo run release --parallel",
"g:test": "turbo run test --parallel",
"g:typecheck": "turbo run typecheck --parallel"
Expand Down
6 changes: 6 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
"dependsOn": [
"build"
]
},
"release": {
"dependsOn": [ ]
},
"typecheck": {
"dependsOn": [ ]
}
}
}

0 comments on commit 73da318

Please sign in to comment.