Skip to content
This repository has been archived by the owner on Jul 27, 2021. It is now read-only.

Commit

Permalink
Fix issue's giving a SyntaxError. (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichMich authored and geowarin committed Mar 1, 2017
1 parent b450dee commit 72e346b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/formatters/moduleNotFound.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function dependenciesNotFound (dependencies) {
'',
dependencies.map(formatGroup),
'',
forgetToInstall(dependencies),
forgetToInstall(dependencies)
);
}

Expand All @@ -45,7 +45,7 @@ function relativeModulesNotFound (modules) {
return concat(
modules.length === 1 ? 'This relative module was not found:' : 'These relative modules were not found:',
'',
modules.map(formatGroup),
modules.map(formatGroup)
);
}

Expand Down Expand Up @@ -79,7 +79,7 @@ function formatErrors (errors) {
return concat(
dependenciesNotFound(dependencies),
dependencies.length && relativeModules.length ? ['', ''] : null,
relativeModulesNotFound(relativeModules),
relativeModulesNotFound(relativeModules)
);
}

Expand Down

1 comment on commit 72e346b

@zhoucumt
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh,my god!About 2 hours ago, I used vue-cli to init a project.After running npm install && npm run dev in the terminal I found that there is an error.And then I opened this file and found this......

Please sign in to comment.