Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vue-loader
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pi-plusplus
fork-from-github
vue-loader
Commits
fdd03380
Commit
fdd03380
authored
Jan 25, 2019
by
Evan You
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: relay correct error message on vue-template-compiler version mismatch
parent
9beed01b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
index.js
lib/index.js
+10
-6
No files found.
lib/index.js
View file @
fdd03380
...
...
@@ -14,14 +14,18 @@ const { NS } = require('./plugin')
let
errorEmitted
=
false
function
loadTemplateCompiler
()
{
function
loadTemplateCompiler
(
loaderContext
)
{
try
{
return
require
(
'vue-template-compiler'
)
}
catch
(
e
)
{
throw
new
Error
(
`[vue-loader] vue-template-compiler must be installed as a peer dependency, `
+
`or a compatible compiler implementation must be passed via options.`
)
if
(
/version mismatch/
.
test
(
e
.
toString
()))
{
loaderContext
.
emitError
(
e
)
}
else
{
loaderContext
.
emitError
(
new
Error
(
`[vue-loader] vue-template-compiler must be installed as a peer dependency, `
+
`or a compatible compiler implementation must be passed via options.`
))
}
}
}
...
...
@@ -62,7 +66,7 @@ module.exports = function (source) {
const
descriptor
=
parse
({
source
,
compiler
:
options
.
compiler
||
loadTemplateCompiler
(),
compiler
:
options
.
compiler
||
loadTemplateCompiler
(
loaderContext
),
filename
,
sourceRoot
,
needMap
:
sourceMap
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment