Skip to content

Commit

Permalink
builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bz888 committed Sep 21, 2022
1 parent bc26f53 commit 4fc9977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/node/src/configure/configure.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { SubqueryProject } from './SubqueryProject';

const logger = getLogger('configure');

const YargsNameMapping = {
const YargsNameMapping: Record<string, string> = {
local: 'localMode',
};

Expand All @@ -38,7 +38,7 @@ function yargsToIConfig(yargs: Args): Partial<IConfig> {
}
acc[YargsNameMapping[key] ?? camelCase(key)] = value;
return acc;
}, {});
}, {} as any);
}

function defaultSubqueryName(config: Partial<IConfig>): MinConfig {
Expand Down

0 comments on commit 4fc9977

Please sign in to comment.