Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jul 16, 2020
1 parent a83d2dd commit c50fd25
Showing 1 changed file with 44 additions and 32 deletions.
76 changes: 44 additions & 32 deletions src/index.ts
Expand Up @@ -192,15 +192,21 @@ export default function PluginVue(userOptions: Partial<Options> = {}): 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 = {}
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -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,
}
}
}

Expand Down

0 comments on commit c50fd25

Please sign in to comment.