0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] npm run format

This commit is contained in:
matthewp 2021-04-19 18:41:37 +00:00 committed by GitHub Actions
parent eb984559a8
commit 46a6ba6093
2 changed files with 16 additions and 22 deletions

View file

@ -302,26 +302,20 @@ async function createSnowpack(astroConfig: AstroConfig, options: CreateSnowpackO
export async function createRuntime(astroConfig: AstroConfig, { mode, logging }: RuntimeOptions): Promise<AstroRuntime> { export async function createRuntime(astroConfig: AstroConfig, { mode, logging }: RuntimeOptions): Promise<AstroRuntime> {
const resolvePackageUrl = async (pkgName: string) => frontendSnowpack.getUrlForPackage(pkgName); const resolvePackageUrl = async (pkgName: string) => frontendSnowpack.getUrlForPackage(pkgName);
const { snowpack: backendSnowpack, snowpackRuntime: backendSnowpackRuntime, snowpackConfig: backendSnowpackConfig } = await createSnowpack( const { snowpack: backendSnowpack, snowpackRuntime: backendSnowpackRuntime, snowpackConfig: backendSnowpackConfig } = await createSnowpack(astroConfig, {
astroConfig, env: {
{ astro: true,
env: { },
astro: true mode,
}, resolvePackageUrl,
mode, });
resolvePackageUrl
}
);
const { snowpack: frontendSnowpack, snowpackRuntime: frontendSnowpackRuntime, snowpackConfig: frontendSnowpackConfig } = await createSnowpack( const { snowpack: frontendSnowpack, snowpackRuntime: frontendSnowpackRuntime, snowpackConfig: frontendSnowpackConfig } = await createSnowpack(astroConfig, {
astroConfig, env: {
{ astro: false,
env: { },
astro: false mode,
}, });
mode
}
);
const runtimeConfig: RuntimeConfig = { const runtimeConfig: RuntimeConfig = {
astroConfig, astroConfig,

View file

@ -15,8 +15,8 @@ DynamicComponents('Loads client-only packages', async ({ runtime }) => {
// Grab the react-dom import // Grab the react-dom import
const exp = /import\("(.+?)"\)/g; const exp = /import\("(.+?)"\)/g;
let match, reactDomURL; let match, reactDomURL;
while(match = exp.exec(result.contents)) { while ((match = exp.exec(result.contents))) {
if(match[1].includes('react-dom')) { if (match[1].includes('react-dom')) {
reactDomURL = match[1]; reactDomURL = match[1];
} }
} }