1、全局脚手架安装
npm install -g yo generator-code
2、创建项目
yo code
3、功能开发
4、发布
- 1、先注册一个微软的账号
- 2、创建访问令牌 token
- 3、不管是打包还是发布都需要安装一个发布工具 vsce
同时都需要关联远端 Git 仓库(package.json / repository)
npm install -g vsce
vsce create-publisher [publisher-name]
vsce login [publisher-name]
vsce publish
o76cdneqcwhwonquklk2t5yasjpithi7tq7n2eqo5x2uasbabodq
工具类
let isChn = (str: string) => /^[\u4E00-\u9FA5]+$/.test(str)
firstCapitalizeTurnSmall = (str: string) => {
let newStr: string = "";
for (var i = 0; i < str.length; i++) {
if (i === 0) {
newStr += str[i][0].toLowerCase()
} else {
newStr += str[i]
}
}
return newStr
}
| |