-
-
Notifications
You must be signed in to change notification settings - Fork 233
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
Build failed when using concurently #432
Comments
Can you provide any more details?
Also note that concurrently doesn't use either of the mentioned packages ( |
I'm also facing the same issue but I don't believe concurrently is the cause as @gustavohenke said. Locally my dev server fails to boot with concurrently being the top of the stack for the trace but when I try and build my project in Github actions it fails on |
@joneath are you using rimraf? I've have this problem when I've got concurrently and rimraf installed, if I remove rimref the error is gone |
I don't have rimraf as a direct dependency but it's included in my yarn.lock as a packaged dependency. My project uses Nuxt and after reverting from the 3.6.x release back to 3.5.3 while also restoring the yarn.lock fixed the issue. I may dig in a bit more to see why the upgrade breaks by project but I may also just wait until the next Nuxt release and try my luck then... |
I got the exact same error. Looking at the lock file, it was supposed to use wrap-ansi@7 but it was using wrap-ansi@v8 even though the lock file was saying otherwise. I had to delete yarn.lock and node_modules and re-run yarn. It's the only way I was able to fix it. Luckily my versions were not too out of date. |
I have the same issue. I use Nuxt |
Also with the latest version? https://github.com/open-cli-tools/concurrently/releases/tag/v8.2.1 |
Yeap, but I reckon that the problem may lie in Nuxt |
Yea
Yeah, I guess it's because of conflicting versions of |
I had this problem using the following dependencies in my SSG for a blog I am preparing: {
"dependencies": {
"@tailwindcss/typography": "^0.5.10",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
} Perhaps this more minimal list of deps can help to identify the problem. In the meantime I was able to mitigate by removing |
Hey @NobbZ, do you mind also sharing your package-lock.json, Node.js and package manager version (npm/pnpm/yarn)? |
I never committed that and reverted already to only tailwind. I will try to reproduce later this evening and then provide what I get. |
I created a gist at https://gist.github.com/NobbZ/df3b2c3491cbb2ae85bdfe88df8ffaa6 that should contain the required information. If anything is missing please ask and I will try to provide it. |
@NobbZ Had to uninstall concurrently because of this. No adequate hacks that works. It also might just work if the package maintainer just upgrade their deps. |
@houd1ni you can still use it if you add to resolutions the dependencies version |
A lot of. I've tracked and added two and more came up. Three and more looks dangerous for me 😄 |
Thanks @NobbZ for the reproduction. I managed to reproduce it without using nix. There are some issues about this on yargs and cliui about this:
Seems like this issue is related to yarn <1.22.22. Once I upgraded yarn, the issue is fixed. |
Hello,
I'm building my projects using concurently but recently my builds fail with this error
I'm using "concurrently": "^8.2.0"
Thank you
The text was updated successfully, but these errors were encountered: