This commit is contained in:
Rodge Fu 2020-03-04 18:21:17 +08:00
Родитель 65a1120b78
Коммит c858c0822e
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -39,6 +39,9 @@ jobs:
- script: 'npx @microsoft/rush sync-versions && npx @microsoft/rush update && npx @microsoft/rush rebuild'
displayName: 'npm build'
- script: 'npm test'
displayName: 'npm test'
- script: 'npx @microsoft/rush publish --publish --pack --include-all --tag latest'
displayName: 'npm pack'

Просмотреть файл

@ -168,7 +168,7 @@ export class Helper {
return;
}
let up1 = (n: string) => n.length == 1 ? n.toUpperCase() : n[0].toUpperCase().concat(n.substr(1).toLowerCase());
let up1 = (n: string) => Helper.isEmptyString(n) ? n : n.length == 1 ? n.toUpperCase() : n[0].toUpperCase().concat(n.substr(1).toLowerCase());
let op = {};
op[CliConst.NamingStyle.camel] = {
wording: (v: string, i: number) => i === 0 ? v.toLowerCase() : up1(v),