2022-06-06 16:49:53 +00:00
|
|
|
import type { Options } from '@sveltejs/vite-plugin-svelte';
|
2023-01-03 18:24:49 +00:00
|
|
|
import { svelte, vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
import type { AstroIntegration, AstroRenderer } from 'astro';
|
2022-06-22 23:55:00 +00:00
|
|
|
import type { UserConfig } from 'vite';
|
2023-01-19 13:13:40 +00:00
|
|
|
import { fileURLToPath } from 'url';
|
2022-03-18 22:35:45 +00:00
|
|
|
|
|
|
|
function getRenderer(): AstroRenderer {
|
|
|
|
return {
|
|
|
|
name: '@astrojs/svelte',
|
|
|
|
clientEntrypoint: '@astrojs/svelte/client.js',
|
|
|
|
serverEntrypoint: '@astrojs/svelte/server.js',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-01-19 13:13:40 +00:00
|
|
|
async function svelteConfigHasPreprocess(root: URL) {
|
|
|
|
const svelteConfigFiles = ['./svelte.config.js', './svelte.config.cjs', './svelte.config.mjs'];
|
|
|
|
for (const file of svelteConfigFiles) {
|
|
|
|
const filePath = fileURLToPath(new URL(file, root));
|
|
|
|
try {
|
|
|
|
const config = (await import(filePath)).default;
|
|
|
|
return !!config.preprocess;
|
|
|
|
} catch {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-22 23:52:32 +00:00
|
|
|
type ViteConfigurationArgs = {
|
|
|
|
isDev: boolean;
|
|
|
|
options?: Options | OptionsCallback;
|
2023-01-19 13:13:40 +00:00
|
|
|
root: URL;
|
2022-06-22 23:55:00 +00:00
|
|
|
};
|
2022-06-22 23:52:32 +00:00
|
|
|
|
2023-01-19 13:13:40 +00:00
|
|
|
async function getViteConfiguration({ options, isDev, root }: ViteConfigurationArgs): Promise<UserConfig> {
|
2022-06-22 23:52:32 +00:00
|
|
|
const defaultOptions: Partial<Options> = {
|
2022-04-22 17:59:20 +00:00
|
|
|
emitCss: true,
|
|
|
|
compilerOptions: { dev: isDev, hydratable: true },
|
|
|
|
};
|
|
|
|
|
2022-07-26 18:04:26 +00:00
|
|
|
// Disable hot mode during the build
|
2022-07-26 18:06:03 +00:00
|
|
|
if (!isDev) {
|
2022-07-26 18:04:26 +00:00
|
|
|
defaultOptions.hot = false;
|
|
|
|
}
|
|
|
|
|
2022-04-22 17:59:20 +00:00
|
|
|
let resolvedOptions: Partial<Options>;
|
|
|
|
|
|
|
|
if (!options) {
|
|
|
|
resolvedOptions = defaultOptions;
|
|
|
|
} else if (typeof options === 'function') {
|
|
|
|
resolvedOptions = options(defaultOptions);
|
|
|
|
} else {
|
|
|
|
resolvedOptions = {
|
|
|
|
...options,
|
|
|
|
...defaultOptions,
|
|
|
|
compilerOptions: {
|
|
|
|
...options.compilerOptions,
|
|
|
|
// Always use dev and hydratable from defaults
|
|
|
|
...defaultOptions.compilerOptions,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-01-19 13:13:40 +00:00
|
|
|
if (!resolvedOptions.preprocess && !(await svelteConfigHasPreprocess(root))) {
|
|
|
|
resolvedOptions.preprocess = vitePreprocess();
|
|
|
|
}
|
|
|
|
|
2022-03-18 22:35:45 +00:00
|
|
|
return {
|
|
|
|
optimizeDeps: {
|
2023-01-03 18:24:49 +00:00
|
|
|
include: ['@astrojs/svelte/client.js'],
|
2022-03-18 22:35:45 +00:00
|
|
|
exclude: ['@astrojs/svelte/server.js'],
|
|
|
|
},
|
2022-04-22 18:00:08 +00:00
|
|
|
plugins: [svelte(resolvedOptions)],
|
2022-03-18 22:35:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-04-22 17:59:20 +00:00
|
|
|
type OptionsCallback = (defaultOptions: Options) => Options;
|
|
|
|
export default function (options?: Options | OptionsCallback): AstroIntegration {
|
2022-03-18 22:35:45 +00:00
|
|
|
return {
|
|
|
|
name: '@astrojs/svelte',
|
|
|
|
hooks: {
|
|
|
|
// Anything that gets returned here is merged into Astro Config
|
2023-01-19 13:13:40 +00:00
|
|
|
'astro:config:setup': async ({ command, updateConfig, addRenderer, config }) => {
|
2022-03-18 22:35:45 +00:00
|
|
|
addRenderer(getRenderer());
|
2022-06-22 23:52:32 +00:00
|
|
|
updateConfig({
|
2023-01-19 13:13:40 +00:00
|
|
|
vite: await getViteConfiguration({
|
2022-06-22 23:52:32 +00:00
|
|
|
options,
|
|
|
|
isDev: command === 'dev',
|
2023-01-19 13:13:40 +00:00
|
|
|
root: config.root,
|
2022-06-22 23:55:00 +00:00
|
|
|
}),
|
2022-06-22 23:52:32 +00:00
|
|
|
});
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
2023-01-19 13:13:40 +00:00
|
|
|
|
|
|
|
export { vitePreprocess };
|