Lines Matching refs:modName
47 modName: string;
56 modName,
66 mod: modName,
79 debug(`mods.${platform}.${modName}: file path: ${filePath || '[skipped]'}`);
88 assertModResults(results, modRequest.platform, modRequest.modName);
93 error.message = `[${platform}.${modName}]: ${methodName}: ${error.message}`;
109 export function assertModResults(results: any, platformName: string, modName: string) {
117 …`Mod \`mods.${platformName}.${modName}\` evaluated to an object that is not a valid project config…
132 >({ modName, ...props }: Omit<CreateBaseModProps<ModType, Props>, 'methodName'>) {
134 const methodName = `with${upperFirst(props.platform)}${upperFirst(modName)}BaseMod`;
137 modName,
162 return Object.entries(providers).reduce((config, [modName, value]) => {
163 const baseMod = createPlatformBaseMod({ platform, modName, ...(value as any) });