Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(chore) Bump turbo #199

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: yarn verify

- name: Run build
run: yarn turbo build --color --concurrency=5
run: yarn turbo build --concurrency=5
denniskigen marked this conversation as resolved.
Show resolved Hide resolved

- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
minimum-change-threshold: 10000 # 10 KB
build-script: "turbo run build --color"
build-script: "turbo build"
denniskigen marked this conversation as resolved.
Show resolved Hide resolved
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"license": "MIT",
"homepage": "https://github.com/openmrs/openmrs-form-engine-lib#readme",
"scripts": {
"lint": "TIMING=1 eslint src --ext .ts,.tsx --fix",
denniskigen marked this conversation as resolved.
Show resolved Hide resolved
"lint": "eslint src --ext .ts,.tsx --fix",
"verify": "turbo lint typescript test",
"test": "jest --config ./jest.config.js --passWithNoTests",
"build": "webpack --mode production",
Expand Down Expand Up @@ -86,7 +86,7 @@
"sass": "^1.54.3",
"swc-loader": "^0.2.3",
"swr": "^2.2.4",
"turbo": "^1.8.5",
"turbo": "^1.13.2",
"typescript": "^4.0.3",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
Expand Down
5 changes: 1 addition & 4 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
"build": {
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
},
"test": {},
denniskigen marked this conversation as resolved.
Show resolved Hide resolved
"lint": {},
"typescript": {}
}
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3376,7 +3376,7 @@ __metadata:
semver: "npm:^7.3.5"
swc-loader: "npm:^0.2.3"
swr: "npm:^2.2.4"
turbo: "npm:^1.8.5"
turbo: "npm:^1.13.2"
typescript: "npm:^4.0.3"
webpack: "npm:^5.76.2"
webpack-cli: "npm:^5.0.1"
Expand Down Expand Up @@ -16843,7 +16843,7 @@ __metadata:
languageName: node
linkType: hard

"turbo@npm:^1.8.5":
"turbo@npm:^1.13.2":
version: 1.13.2
resolution: "turbo@npm:1.13.2"
dependencies:
Expand Down
Loading