We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f9de02 commit fcc0e79Copy full SHA for fcc0e79
src/loadTemplateConfig.js
@@ -60,10 +60,10 @@ module.exports = async templatePath => {
60
61
const entryPath = join(templatePath, packageJson.main)
62
63
- const config = await loadEntryFile(entryPath)
+ let config = await loadEntryFile(entryPath)
64
65
try {
66
- checkConfig(config)
+ config = checkConfig(config)
67
} catch(e) {
68
throwError('Template configuration error')
69
}
0 commit comments