MikeyM
Denoβ€’7mo agoβ€’
5 replies
Mikey

How to change views between 2 running tasks

I have 2 vite clients running at the same time, and i wish to change the visible logs that i see in the terminal (similar to how turbo does it), is there any way to do this?

im running them like so:

{
"workspace": ["main", "test"],
    "tasks": {
        "dev": {
            "dependencies": ["dev:test", "dev:main"]
        },
        "dev:test": {
            "command": "deno task --cwd=./test dev"
        },
        "dev:main": {
            "command": "deno task --cwd=./main dev"
        }
    }
}
Was this page helpful?