feat(cli): support more features

This commit is contained in:
陈嘉涵
2019-11-19 16:25:05 +08:00
parent b61f331f7a
commit abe15a63fc
16 changed files with 1112 additions and 139 deletions
+3
View File
@@ -1,4 +1,5 @@
import fs from 'fs-extra';
import decamelize from 'decamelize';
import { join } from 'path';
import { SRC_DIR } from './constant';
@@ -65,3 +66,5 @@ export function pascalize(str: string): string {
(_, c1, c2) => c1.toUpperCase() + c2
);
}
export { decamelize };