psychobolt

Results 81 comments of psychobolt

The issue is really random. However I am still able to reproduce it locally. See screenshot: ![Screenshot 2024-01-04 at 10 03 06 PM](https://github.com/vercel/turbo/assets/560721/a6e5db21-412e-44a6-9feb-8a70d4a94044) On my private repo in bitbucket, interesting...

I believe `yarn check` computes the latest reachable ref. Yarn supports environment variables in the config. You can also set a environment variable in github CI workflows, however it doesn't...

I have same issue trying to use Stylelint 16. Seems like their API is now deprecating all common-js plugins and extensions. I don't think using Stylelint modules directly for Yarn...

I managed to create a hybrid PnP + node_modules setup for my project so I can migrate to the latest `stylelint` version (v16). You can manually link to node_modules using...

Yeah that is indeed a workaround. Right now the only way for Yarn to resolve ESM modules is using their node loader. Unfortately, that would require to [support runtime](https://github.com/stylelint/vscode-stylelint/issues/439) as...

Refer to: https://github.com/webpack-contrib/sass-loader#problems-with-url

I haven't decided to add a React Native version, but I am currently working on touch handling to support mobile browsers.

Hello, I've committed some new changes for touch support on mobile devices. I've not made a new package release yet because I'm adding improvements to custom styling. You can test...

Related: https://github.com/vitejs/vite/issues/10481. For ESM projects, you can use a patch: ```diff diff --git a/package.json b/package.json index 43dab1681043cc814049b01d91212b3f63faae68..38072d9e897532ec42138b978dbecfe0d8c90278 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,8 @@ "types": "./dist/index.d.ts" } },...

@jakebailey Prior to 5.5, Typescript would include the triple slash reference path to a local `d.ts`, if it was determined that I wrote my own global typings file to augment...