imc-vibe/frontend/node_modules/@sveltejs/vite-plugin-svelte/src/utils/svelte-version.js
2026-03-21 22:41:23 +01:00

12 lines
259 B
JavaScript

import { VERSION } from 'svelte/compiler';
/**
* @type {boolean}
*/
export const isSvelte5 = VERSION.startsWith('5.');
/**
* @type {boolean}
*/
export const isSvelte5WithHMRSupport =
VERSION.startsWith('5.0.0-next.') && Number(VERSION.slice(11)) > 96;