We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c98675 commit b0f8ea4Copy full SHA for b0f8ea4
1 file changed
lib/transform.js
@@ -14,8 +14,7 @@ function transformPath(componentPath, options) {
14
let templatePaths = possibleTemplatePaths(componentPath);
15
let templatePath = templatePaths.find(fs.existsSync);
16
if (!templatePath) {
17
- let where = templatePaths.join(' or ');
18
- throw new SilentError(`Could not find template at ${where}`);
+ throw new SilentError('Could not find corresponding template file');
19
}
20
debug('templatePath: %o', templatePath);
21
0 commit comments