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 d17bc71 commit e9ea554Copy full SHA for e9ea554
addon/ng2/models/config/config.ts
@@ -73,7 +73,7 @@ export class CliConfig<Config> {
73
try {
74
content = JSON.parse(configContent);
75
schema = JSON.parse(schemaContent);
76
- others = otherContents.map(content => JSON.parse(otherContent));
+ others = otherContents.map(otherContent => JSON.parse(otherContent));
77
} catch (err) {
78
throw new InvalidConfigError(err);
79
}
0 commit comments