Skip to content

Commit 37ef678

Browse files
chore: do not use await keyword
1 parent 7c0fd18 commit 37ef678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require('path');
22
const fs = require('fs');
3-
const getPort = await import('get-port').then(module => module.default);
3+
const getPort = import('get-port').then(module => module.default);
44
const vite = require('./vite.js');
55
const vite_dev_server = {
66
port: process.argv.includes('--test-worker') ? null : 5173

0 commit comments

Comments
 (0)