UNPKG

@sveltejs/vite-plugin-svelte

Version:

The official [Svelte](https://svelte.dev) plugin for [Vite](https://vitejs.dev).

173 lines (159 loc) 5.22 kB
/** @import { Options } from '../public.js' */ /** @import { ResolvedOptions } from '../types/options.js' */ /** @import { Warning } from 'svelte/compiler' */ /** @import { Rollup } from 'vite' */ import { buildExtendedLogMessage } from './log.js'; /** * convert an error thrown by svelte.compile to a RollupError so that vite displays it in a user friendly way * @param {Warning & Error & {frame?: string}} error a svelte compiler error, which is a mix of Warning and an error * @param {ResolvedOptions} options * @returns {Rollup.RollupError} the converted error */ export function toRollupError(error, options) { const { filename, frame, start, code, name, stack } = error; /** @type {Rollup.RollupError} */ const rollupError = { name, // needed otherwise sveltekit coalesce_to_error turns it into a string id: filename, message: buildExtendedLogMessage(error), // include filename:line:column so that it's clickable frame: formatFrameForVite(frame), code, stack: options.isBuild || options.isDebug || !frame ? stack : '' }; if (start) { rollupError.loc = { line: start.line, column: start.column, file: filename }; } return rollupError; } /** * convert an error thrown by svelte.compile to an esbuild PartialMessage * @param {Warning & Error & {frame?: string}} error a svelte compiler error, which is a mix of Warning and an error * @param {ResolvedOptions} options * @returns {any} the converted error as esbuild PartialMessage * * note: typed any to avoid esbuild devDependency for a single internal type import */ export function toESBuildError(error, options) { const { filename, frame, start, stack } = error; /** @type any */ const partialMessage = { text: buildExtendedLogMessage(error) }; if (start) { partialMessage.location = { line: start.line, column: start.column, file: filename, lineText: lineFromFrame(start.line, frame) // needed to get a meaningful error message on cli }; } if (options.isBuild || options.isDebug || !frame) { partialMessage.detail = stack; } return partialMessage; } /** * extract line with number from codeframe * * @param {number} lineNo * @param {string} [frame] * @returns {string} */ function lineFromFrame(lineNo, frame) { if (!frame) { return ''; } const lines = frame.split('\n'); const errorLine = lines.find((line) => line.trimStart().startsWith(`${lineNo}: `)); return errorLine ? errorLine.substring(errorLine.indexOf(': ') + 3) : ''; } /** * vite error overlay expects a specific format to show frames * this reformats svelte frame (colon separated, less whitespace) * to one that vite displays on overlay ( pipe separated, more whitespace) * e.g. * ``` * 1: foo * 2: bar; * ^ * 3: baz * ``` * to * ``` * 1 | foo * 2 | bar; * ^ * 3 | baz * ``` * @see https://github.com/vitejs/vite/blob/96591bf9989529de839ba89958755eafe4c445ae/packages/vite/src/client/overlay.ts#L116 * @param {string} [frame] * @returns {string} */ function formatFrameForVite(frame) { if (!frame) { return ''; } return frame .split('\n') .map((line) => (line.match(/^\s+\^/) ? ' ' + line : ' ' + line.replace(':', ' | '))) .join('\n'); } /** * * @param {string} code the svelte error code * @see https://github.com/sveltejs/svelte/blob/main/packages/svelte/src/compiler/errors.js * @returns {boolean} */ function couldBeFixedByCssPreprocessor(code) { return code === 'expected_token' || code === 'unexpected_eof' || code?.startsWith('css_'); } /** * @param {Warning & Error} err a svelte compiler error, which is a mix of Warning and an error * @param {string} originalCode * @param {Options['preprocess']} [preprocessors] */ export function enhanceCompileError(err, originalCode, preprocessors) { preprocessors = arraify(preprocessors ?? []); /** @type {string[]} */ const additionalMessages = []; // Handle incorrect CSS preprocessor usage if (couldBeFixedByCssPreprocessor(err.code)) { // Reference from Svelte: https://github.com/sveltejs/svelte/blob/9926347ad9dbdd0f3324d5538e25dcb7f5e442f8/packages/svelte/src/compiler/preprocess/index.js#L257 const styleRe = /<!--[^]*?-->|<style((?:\s+[^=>'"/]+=(?:"[^"]*"|'[^']*'|[^>\s]+)|\s+[^=>'"/]+)*\s*)(?:\/>|>([\S\s]*?)<\/style>)/g; let m; while ((m = styleRe.exec(originalCode))) { if (m[0]?.startsWith('<!--')) { continue; } // Warn missing lang attribute if (!m[1]?.includes('lang=')) { additionalMessages.push('Did you forget to add a lang attribute to your style tag?'); } // Warn missing style preprocessor if ( preprocessors.every((p) => p.style == null || p.name === 'inject-scope-everything-rule') ) { const preprocessorType = m[1]?.match(/lang="(.+?)"/)?.[1] ?? 'style'; additionalMessages.push( `Did you forget to add a ${preprocessorType} preprocessor? See https://github.com/sveltejs/vite-plugin-svelte/blob/main/docs/preprocess.md for more information.` ); } } } if (additionalMessages.length) { err.message += '\n\n- ' + additionalMessages.join('\n- '); } return err; } /** * @param {T | T[]} value * @template T */ function arraify(value) { return Array.isArray(value) ? value : [value]; }