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

[ci] yarn format

This commit is contained in:
matthewp 2021-06-21 19:35:26 +00:00 committed by GitHub Actions
parent 0abd251cda
commit 32fdb383c7
6 changed files with 7 additions and 7 deletions

View file

@ -100,7 +100,7 @@ export default {
server: './server.js', // relative path to the server entrypoint server: './server.js', // relative path to the server entrypoint
snowpackPlugin: '@snowpack/plugin-xxx', // optional, the name of a snowpack plugin to inject snowpackPlugin: '@snowpack/plugin-xxx', // optional, the name of a snowpack plugin to inject
snowpackPluginOptions: { example: true }, // optional, any options to be forwarded to the snowpack plugin snowpackPluginOptions: { example: true }, // optional, any options to be forwarded to the snowpack plugin
knownEntrypoint: ['framework'] // optional, entrypoint modules that will be used by compiled source knownEntrypoint: ['framework'], // optional, entrypoint modules that will be used by compiled source
}; };
``` ```

View file

@ -97,7 +97,7 @@ export class ConfigManager {
snowpackPlugin, snowpackPlugin,
client: path.join(name, raw.client), client: path.join(name, raw.client),
server: path.join(name, raw.server), server: path.join(name, raw.server),
knownEntrypoints: raw.knownEntrypoints knownEntrypoints: raw.knownEntrypoints,
}; };
}); });

View file

@ -2,5 +2,5 @@ export default {
name: '@astrojs/renderer-preact', name: '@astrojs/renderer-preact',
client: './client', client: './client',
server: './server', server: './server',
knownEntrypoints: ['preact', 'preact-render-to-string'] knownEntrypoints: ['preact', 'preact-render-to-string'],
}; };

View file

@ -2,5 +2,5 @@ export default {
name: '@astrojs/renderer-react', name: '@astrojs/renderer-react',
client: './client', client: './client',
server: './server', server: './server',
knownEntrypoints: ['react', 'react-dom/server'] knownEntrypoints: ['react', 'react-dom/server'],
}; };

View file

@ -3,5 +3,5 @@ export default {
snowpackPlugin: '@snowpack/plugin-vue', snowpackPlugin: '@snowpack/plugin-vue',
client: './client', client: './client',
server: './server', server: './server',
knownEntrypoints: ['vue'] knownEntrypoints: ['vue'],
}; };