@Turbo/codemod version 2.0.3 terminal cannot be copied #8446
Labels
kind: bug
Something isn't working
needs: triage
New issues get this label. Remove it after triage
owned-by: turborepo
Verify canary release
Link to code that reproduces this issue
https://github.com/limuen/monorepo-project
What package manager are you using / does the bug impact?
pnpm
What operating system are you using?
Mac
Which canary version will you have in your reproduction?
devDependencies: turbo 2.0.3
Describe the Bug
run: pnpm dev --filter react-low-code
And then I kept getting stuck here, trying to input in the browser http://localhost:5173 But I found that it could be opened, but the terminal was stuck there and couldn't copy any information。
I had to use Ctrl+C to terminate the current program, but the console printed me the information and port for starting the project.
Expected Behavior
My normal behavior should be running my pnpm dev -- filter react low code, then executing the build command for packages/viteconfig, and then running my apps/react low code
pnpm dev --filter react-low-code
To Reproduce
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env"],
"ui": "tui",
"tasks": {
"defaultProject#dev": {
"dependsOn": ["@limuen/viteconfig#build"],
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env.development.local", ".env.development", ".env.local", ".env"]
},
"defaultProject#build": {
"dependsOn": ["@limuen/viteconfig#build"],
"outputs": ["dist/"],
"inputs": ["$TURBO_DEFAULT$", ".env.development.local", ".env.development", ".env.local", ".env"]
},
"react-low-code#dev": {
"dependsOn": ["@limuen/viteconfig#build"],
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env.development.local", ".env.development", ".env.local", ".env"]
},
"react-low-code#build": {
"dependsOn": ["@limuen/viteconfig#build"],
"outputs": ["dist/"],
"inputs": ["$TURBO_DEFAULT$", ".env.development.local", ".env.development", ".env.local", ".env"]
},
"dev:weapp": {
"dependsOn": ["^dev:weapp"],
"persistent": true,
"cache": false
},
"dev:alipay": {
"dependsOn": ["^dev:alipay"],
"persistent": true,
"cache": false
},
"build:alipay": {
"dependsOn": ["^build:alipay"],
"outputs": []
},
"dev:tt": {
"dependsOn": ["^dev:tt"],
"persistent": true,
"cache": false
},
"build:tt": {
"dependsOn": ["^build:tt"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env.development.local", ".env.development", ".env.local", ".env"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/"],
"inputs": ["$TURBO_DEFAULT$", ".env.production.local", ".env.production", ".env.local", ".env"]
},
"test": {
"dependsOn": ["^test"],
"outputs": ["dist/"],
"inputs": ["$TURBO_DEFAULT$", ".env.test.local", ".env.test", ".env.local", ".env"]
},
"lint": {
"dependsOn": []
}
}
}
Additional context
It is normal in version 1.3. x, but the above issues occur when upgrading to version 2. x
The text was updated successfully, but these errors were encountered: