Skip to content

Commit 6cbe5d8

Browse files
authored
chore(web-core-wasm): remove ^build to avoid cache miss (#2293)
<!-- Thank you for submitting a pull request! We appreciate the time and effort you have invested in making these changes. Please ensure that you provide enough information to allow others to review your pull request. Upon submission, your pull request will be automatically assigned with reviewers. If you want to learn more about contributing to this project, please visit: https://github.com/lynx-family/lynx-stack/blob/main/CONTRIBUTING.md. --> <!-- The AI summary below will be auto-generated - feel free to replace it with your own. --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Optimized build task dependencies to streamline the build process. <!-- end of auto-generated comment: release notes by coderabbit.ai --> ## Checklist <!--- Check and mark with an "x" --> - [ ] Tests updated (or not required). - [ ] Documentation updated (or not required). - [ ] Changeset added, and when a BREAKING CHANGE occurs, it needs to be clearly marked (or not required).
1 parent 3059ad3 commit 6cbe5d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/web-platform/web-core-wasm/turbo.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"extends": ["//"],
44
"tasks": {
55
"build:wasm": {
6-
"dependsOn": ["^build"],
6+
"dependsOn": [],
77
"inputs": ["src/**", "scripts/**", "Cargo.toml", "package.json"],
88
"outputs": ["binary/**"]
99
},
1010
"build": {
11-
"dependsOn": ["build:wasm", "^build"],
11+
"dependsOn": ["build:wasm"],
1212
"inputs": ["src/**", "ts/**", "index.css", "*.ts"],
1313
"outputs": ["dist/**"]
1414
}

0 commit comments

Comments
 (0)