File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,8 @@ export const createDev = (defaultAppConfig: Partial<AppConfig>): DevCommand => {
36
36
? resolveUserConfigPath ( commandOptions . config )
37
37
: resolveUserConfigConventionalPath ( cliAppConfig . source )
38
38
log ( `userConfigPath:` , userConfigPath )
39
- const { userConfig, userConfigDependencies } = await loadUserConfig (
40
- userConfigPath ,
41
- )
39
+ const { userConfig, userConfigDependencies } =
40
+ await loadUserConfig ( userConfigPath )
42
41
43
42
// resolve the final app config to use
44
43
const appConfig = resolveAppConfig ( {
Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ import type { App } from '../../types/index.js'
5
5
*/
6
6
export const prepareClientConfigs = async ( app : App ) : Promise < void > => {
7
7
// plugin hook: clientConfigFile
8
- const clientConfigFiles = await app . pluginApi . hooks . clientConfigFile . process (
9
- app ,
10
- )
8
+ const clientConfigFiles =
9
+ await app . pluginApi . hooks . clientConfigFile . process ( app )
11
10
12
11
// generate client config files entry
13
12
const content = `\
You can’t perform that action at this time.
0 commit comments