Skip to content

Commit 091a3ab

Browse files
committed
Tweak config for consistency
1 parent f567834 commit 091a3ab

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

vitest.config.mjs

+20-11
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ const root = path.resolve(__dirname);
1111
const alias = {
1212
'^react$': path.join(
1313
root,
14-
MINIFY ? 'compat/dist/compat.js' : 'compat/src/index.js'
14+
MINIFY ? 'compat/dist/compat.mjs' : 'compat/src/index.js'
1515
),
1616
'^react-dom$': path.join(
1717
root,
18-
MINIFY ? 'compat/dist/compat.js' : 'compat/src/index.js'
18+
MINIFY ? 'compat/dist/compat.mjs' : 'compat/src/index.js'
1919
),
20-
'^preact$': path.join(root, MINIFY ? 'dist/preact.js' : 'src/index.js'),
20+
'^preact$': path.join(root, MINIFY ? 'dist/preact.mjs' : 'src/index.js'),
2121
'^preact/compat$': path.join(
2222
root,
23-
MINIFY ? 'compat/dist/compat.js' : 'compat/src/index.js'
23+
MINIFY ? 'compat/dist/compat.mjs' : 'compat/src/index.js'
2424
),
2525
'^preact/jsx-runtime$': path.join(
2626
root,
27-
MINIFY ? 'jsx-runtime/dist/jsxRuntime.js' : 'jsx-runtime/src/index.js'
27+
MINIFY ? 'jsx-runtime/dist/jsxRuntime.mjs' : 'jsx-runtime/src/index.js'
2828
),
2929
'^preact/jsx-runtime/src$': path.join(
3030
root,
31-
MINIFY ? 'jsx-runtime/dist/jsxRuntime.js' : 'jsx-runtime/src'
31+
MINIFY ? 'jsx-runtime/dist/jsxRuntime.mjs' : 'jsx-runtime/src'
3232
),
3333
'^preact/jsx-dev-runtime$': path.join(
3434
root,
@@ -38,15 +38,19 @@ const alias = {
3838
),
3939
'^preact/debug$': path.join(
4040
root,
41-
MINIFY ? 'debug/dist/debug.js' : 'debug/src/index.js'
41+
MINIFY ? 'debug/dist/debug.mjs' : 'debug/src/index.js'
42+
),
43+
'^preact/devtools$': path.join(
44+
root,
45+
MINIFY ? 'devtools/dist/devtools.js' : 'devtools/src/index.js'
4246
),
4347
'^preact/hooks$': path.join(
4448
root,
45-
MINIFY ? 'hooks/dist/hooks.js' : 'hooks/src/index.js'
49+
MINIFY ? 'hooks/dist/hooks.mjs' : 'hooks/src/index.js'
4650
),
4751
'^preact/test-utils$': path.join(
4852
root,
49-
MINIFY ? 'test-utils/dist/testUtils.js' : 'test-utils/src/index.js'
53+
MINIFY ? 'test-utils/dist/testUtils.mjs' : 'test-utils/src/index.js'
5054
)
5155
};
5256

@@ -94,6 +98,12 @@ const rollupAlias = [
9498
? path.join(root, 'debug/dist/debug.mjs')
9599
: path.join(root, 'debug/src/index.js')
96100
},
101+
{
102+
find: /^preact\/devtools$/,
103+
replacement: MINIFY
104+
? path.join(root, 'devtools/dist/devtools.mjs')
105+
: path.join(root, 'devtools/src/index.js')
106+
},
97107
{
98108
find: /^preact\/hooks$/,
99109
replacement: MINIFY
@@ -223,11 +233,10 @@ export default defineConfig({
223233
setupFiles: ['./vitest.setup.js'],
224234
globals: true,
225235
browser: {
226-
provider: 'webdriverio', // or 'webdriverio'
236+
provider: 'webdriverio',
227237
enabled: true,
228238
screenshotFailures: false,
229239
headless: true,
230-
// at least one instance is required
231240
instances: [{ browser: 'chrome' }]
232241
}
233242
}

0 commit comments

Comments
 (0)