psychobolt

Results 81 comments of psychobolt

I think in either [cases](https://github.com/yarnpkg/berry/blob/a3e5695186f2aec3a68810acafc6c9b1e45191da/packages/yarnpkg-core/sources/folderUtils.ts#L6) for github Windows runner, `LOCALAPPDATA` and `homedir` will refer to the OS home drive. One way is to configure `globalFolder` as suggested by @ecraig12345 ,...

Here is a similiar case, but happening in bitbucket pipelines: ```sh ➤ YN0000: ┌ Link step ➤ YN0001: │ Error: EXDEV: cross-device link not permitted, link '/root/.yarn/berry/index/2c/2cc5fdd737af90eb3846d7c4342e45160f7207d4.dat' -> '/opt/atlassian/pipelines/agent/build/apps/svelte-app/node_modules/.store/@dotenvx-dotenvx-npm-0.31.1-5f7bc83e8d/package/LICENSE' ```...

I left a related comment in https://github.com/yarnpkg/berry/issues/2701#issuecomment-2081257504. I don't think copying cache files is optimal in the case if there were files to be fetched before the linking stage. It...

As of now I am still using the [workaround](https://github.com/stylelint/vscode-stylelint/issues/464#issuecomment-2013913502) I've mentioned. Having a separate workspace without PnP or PNPM and instructing `vscode-stylint` to resolve into this workspace's `node_modules`. Definitely requires...

Ran into this issue unless I ignore peer dependencies e.g. `flow-typed update -i peer`

Seems like this a breaking change for projects still on Node 18. Why was this not noted in the release docs? Anyways, seems like the author provided some suggestions for...

Same issue when running any `yarn` commands. Can we make environment files optional by default?

Unfortunately, if your `.yarnrc.xml` depend on environment variables you will not be able to run `dlx` without injecting the necessary environment files. e.g. ``` # .env.defaults BASE_REF=develop ``` ```yml injectEnvironmentFiles:...

I found out I could use fallback as described [here](https://yarnpkg.com/configuration/yarnrc). `${BASE_REF:-develop}` would work for my case.

@nickretallack Nothing you need to run in addition. You just need a fallback value for any environment variables if you plan to not load required environment files yet. According to...