fix(vscode): fix turbo dependency for vscode build setup #4772
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CleanShot.2024-05-03.at.17.21.05.mp4
This pull request primarily involves changes to the build scripts in the
package.json
files of thevs-code-designer
andvs-code-react
applications, as well as modifications to theturbo.json
file. The main changes include the removal of thebuild:vscode-react
script from thevs-code-designer
application and its addition to thevs-code-react
application, the removal of thebuild:vscode-react
script from the rootpackage.json
file, and the addition of dependencies in theturbo.json
file.apps/vs-code-designer/package.json
: Thebuild:vscode-react
script was removed from thebuild:extension
script, indicating that thevs-code-react
build is no longer part of thevs-code-designer
build process.apps/vs-code-react/package.json
: Thebuild:vscode-react
script was renamed tobuild:extension
, suggesting that thevs-code-react
application now has its own build process separate from thevs-code-designer
application.package.json
: Thebuild:vscode-react
script was removed from the rootpackage.json
file, further indicating that thevs-code-react
build is now separate from the main build process.turbo.json
: Thebuild:vscode-react
pipeline was renamed tovscode-designer#build:extension
andvscode-react#build:extension
. Thevscode-react#build:extension
pipeline now depends on thevscode-designer#build:extension
pipeline, meaning that thevscode-designer
build must complete before thevscode-react
build can start.