Cal Freitas

Results 9 comments of Cal Freitas

One of the benefits of this repo is its focus on React and the limited bloat. While you *could* add support for other libraries (and more easily for things like...

There's a minor formatting problem in the blacklist description due to the text being interpreted as markdown in the settings for the plugin. https://github.com/atom/autocomplete-plus/blob/c75f47636f3af42da5339d0704e21f723d91fd72/package.json#L85 The source: `Suggestions will not be...

Setting the following under `test` in my `vite.config.ts` fixed `vitest` for me for now (until the eventual fix lands in https://github.com/vitejs/vite/issues/10444). ```typescript deps: { fallbackCJS: true, }, ssr: { //...

Dependencies snippet: ``` "@openapi-codegen/cli": "^2.0.0", "@openapi-codegen/typescript": "^6.0.0", "typescript": "^4.7.4", ```

Other relevant docs: * https://github.com/estree/estree/blob/master/es2018.md * https://tc39.es/ecma262/#sec-template-literals

If you have a vitest setup file via `--setupFiles` ([link](https://vitest.dev/config/#setupfiles)), inside of it you can add a very loud failure for `unhandledRejection`. ``` // FAIL LOUDLY on unhandled promise rejections...

`yarn upgrade-interactive` is now part of yarn. You can probably resolve this issue as this feature would duplicate something built into yarn.

For my use case, I was using the `sqlite` and `sqlite3` modules. I was able to avoid this error by leaving them external in my build command: ```sh ncc build...