swc-jotai icon indicating copy to clipboard operation
swc-jotai copied to clipboard

Results 21 swc-jotai issues
Sort by recently updated
recently updated
newest added

reproduction: https://github.com/yf-yang/turbopack-swc-jotai-bug **This bug only happens when turbopack is enabled** ``` shell pnpm dev --turbo # with turbopack enabled ``` When calling ``` javascript const n = globalThis.jotaiAtomCache.get("index.modern.js/n", t()); ```...

Hello, I was updating dependencies of my project until i got blocked with theses two differents versions. I tried to update both libs versions separately but I found that they...

needs reproduction

Environment: - @swc-jotai/react-refresh 0.1.0 - next 13.4.19 (with swc-core 1.3.80) next.config.js: ``` js experimental: { swcPlugins: [ [ '@swc-jotai/react-refresh', {} ], ], } ``` Why it happen: The following lines...

bug
help wanted

Hi, I was trying to use @swc-jotai/debug-label in my Next.js project, and after installing it, all my atoms were still displayed as "unlabeled" in the DevTools. After some searching and...

documentation

The [`atomFamily`](https://github.com/pmndrs/jotai/blob/main/src/vanilla/utils/atomFamily.ts) utility is a useful function, but it seems that `swc-jotai` either doesn't support it altogether, or that it is buggy. Tests doesn't mention it, and I tried to...

Could we add a feature into `@swc-jotai/debug-label` so that this provides a fallback label but otherwise uses a `.debugLabel` if one already exists? e.g. ```ts countAtom.debugLabel = countAtom.debugLabel ?? "countAtom";...

enhancement

Resolve #40 Also extracts `swc_core` dependency into the workspace for easier version management.

Hi, thanks a lot for your great work. I updated Rspack to v1, they are now using swc_core v0.98. (1.70 - 1.7.18) https://plugins.swc.rs/versions/range/16 Are there plans to upgrade this plugin...

```ts import createNextIntlPlugin from "next-intl/plugin"; import type { NextConfig } from "next"; const withNextIntl = createNextIntlPlugin(); const nextConfig: NextConfig = { reactStrictMode: true, transpilePackages: ["jotai-devtools"], experimental: { swcPlugins: [["@swc-jotai/debug-label", {}]],...

When using the latest Next.js 15.2.0 in my existing project it causes these errors. The error happening during build, seems to be the same as https://github.com/pmndrs/swc-jotai/issues/44 (or close to). ###...