update ci and add a small fix
This commit is contained in:
Родитель
65a1120b78
Коммит
c858c0822e
|
@ -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),
|
||||
|
|
Загрузка…
Ссылка в новой задаче