Merge pull request #3487 from adamdmharvey/fix-visibility

fix(config-loader,cli,example-app): Refactor visibility typo in vars/funcs across multiple packages
This commit is contained in:
Fredrik Adelöw
2020-11-30 14:05:41 +01:00
committed by GitHub
9 changed files with 27 additions and 18 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ export async function readConfigs(options: ReadOptions): Promise<AppConfig[]> {
const frontendConfigs = await schema.process(
[{ data: config.get() as JsonObject, context: 'app' }],
{ visiblity: ['frontend'] },
{ visibility: ['frontend'] },
);
appConfigs.push(...frontendConfigs);
}