We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2f613 commit bd1a4e8Copy full SHA for bd1a4e8
vitest.config.mjs
@@ -19,6 +19,9 @@ export default defineConfig({
19
'@preact/signals-react': path.join(
20
dirname, './packages/react/dist/signals.min.js'
21
),
22
+ '@preact/signals-react-runtime': path.join(
23
+ dirname, './packages/react/runtime/dist/runtime.min.js'
24
+ ),
25
'@preact/signals-react-utils': path.join(
26
dirname, './packages/react/utils/utils.min.js'
27
@@ -31,7 +34,7 @@ export default defineConfig({
31
34
} : {}
32
35
},
33
36
plugins: [
- manglePlugin
37
+ manglePlugin,
38
],
39
// TODO (43081j): stop faking node globals and sort out the transform
40
// tests. Either run them in node, or somehow run babel in node but the
0 commit comments