chore: change all file names to camel case

This commit is contained in:
Jacob Nguyen
2023-05-06 22:12:37 -05:00
parent bf6b99ff03
commit 8c28e00206
11 changed files with 132 additions and 156 deletions

View File

@@ -29,6 +29,7 @@ export async function defaultModuleLoader<T extends Module>(absPath: string): Mo
function checkIsProcessed<T extends Module>(m: T): asserts m is Processed<T> {
assert.ok(m.name !== undefined, `name is not defined for ${util.format(m)}`);
assert.ok(m.description !== undefined, `description is not defined for ${util.format}`);
}
export const fmtFileName = (n: string) => n.substring(0, n.length - 3);