diff --git a/src/index.ts b/src/index.ts index d33e33e..9baa51a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -192,15 +192,21 @@ export default function PluginVue(userOptions: Partial = {}): Plugin { if (preprocessLang) { preprocessOptions = preprocessOptions[preprocessLang] || preprocessOptions - - if ( - ['scss', 'sass'].includes(preprocessLang) && - !preprocessOptions.includePaths - ) { - preprocessOptions = { - includePaths: ['node_modules'], - ...preprocessOptions, - } + // include node_modules for imports by default + switch (preprocessLang) { + case 'scss': + case 'sass': + preprocessOptions = { + includePaths: ['node_modules'], + ...preprocessOptions, + } + break + case 'less': + case 'stylus': + preprocessOptions = { + paths: ['node_modules'], + ...preprocessOptions, + } } } else { preprocessOptions = {} @@ -363,21 +369,15 @@ function getDescriptor(id: string) { throw new Error(`${id} is not parsed yet`) } -function parseSFC( - code: string, - id: string, - sourceRoot: string -): { descriptor: SFCDescriptor; errors: CompilerError[] } { +function parseSFC(code: string, id: string, sourceRoot: string) { const { descriptor, errors } = parse(code, { sourceMap: true, filename: id, sourceRoot: sourceRoot, pad: 'line', }) - cache.set(id, descriptor) - - return { descriptor, errors } + return { descriptor, errors: errors } } function transformVueSFC( @@ -548,21 +548,33 @@ function getCustomBlock( return code } -function createRollupError(id: string, error: CompilerError): RollupError { - return { - id, - plugin: 'vue', - pluginCode: String(error.code), - message: error.message, - frame: error.loc!.source, - parserError: error, - loc: error.loc - ? { - file: id, - line: error.loc.start.line, - column: error.loc.start.column, - } - : undefined, +function createRollupError( + id: string, + error: CompilerError | SyntaxError +): RollupError { + if ('code' in error) { + return { + id, + plugin: 'vue', + pluginCode: String(error.code), + message: error.message, + frame: error.loc!.source, + parserError: error, + loc: error.loc + ? { + file: id, + line: error.loc.start.line, + column: error.loc.start.column, + } + : undefined, + } + } else { + return { + id, + plugin: 'vue', + message: error.message, + parserError: error, + } } }