[ci] yarn format
This commit is contained in:
parent
f4a747fb1f
commit
a893b4a921
1 changed files with 9 additions and 6 deletions
|
@ -422,12 +422,15 @@ async function createSnowpack(astroConfig: AstroConfig, options: CreateSnowpackO
|
||||||
const envConfig = snowpackConfig.env || (snowpackConfig.env = {});
|
const envConfig = snowpackConfig.env || (snowpackConfig.env = {});
|
||||||
Object.assign(envConfig, env);
|
Object.assign(envConfig, env);
|
||||||
|
|
||||||
snowpack = await startSnowpackServer({
|
snowpack = await startSnowpackServer(
|
||||||
config: snowpackConfig,
|
{
|
||||||
lockfile: null,
|
config: snowpackConfig,
|
||||||
}, {
|
lockfile: null,
|
||||||
isWatch: isHmrEnabled,
|
},
|
||||||
});
|
{
|
||||||
|
isWatch: isHmrEnabled,
|
||||||
|
}
|
||||||
|
);
|
||||||
const snowpackRuntime = snowpack.getServerRuntime();
|
const snowpackRuntime = snowpack.getServerRuntime();
|
||||||
|
|
||||||
return { snowpack, snowpackRuntime, snowpackConfig };
|
return { snowpack, snowpackRuntime, snowpackConfig };
|
||||||
|
|
Loading…
Reference in a new issue