wit-plus
v0.0.22
Published
A Component Library for Vue 3
Downloads
3
Readme
简体中文
🔊 安装说明
# win10安装node:node-v16.18.1-x64.msi(https://nodejs.org/download/release/v16.18.1/node-v16.18.1-x64.msi)
# vscode中文版插件:Chinese (Simplified)(必须安装)
# vscode快速生成语法糖模板: element-plus-helper(vue页面中输入vab-指令即可快速生成语法糖模板/输入el-快速生成代码)(必须安装)
# vscode代码校验: Eslint(必须安装)
# css编译时格式校验: stylelint(必须安装)
# 代码自动格式化: Prettier - Code formatter(必须安装)
# vue3格式化: Vue Language Features (Volar)(必须安装)
# vue3 Ts格式化:TypeScript Vue Plugin (Volar)(必须安装)
# import 引入自动补全:Auto Import(必须安装)
# 自动补全 html 标签:Auto Close Tag(推荐安装)
# 自动重命名 html 标签:Auto Rename Tag(推荐安装)
# 查看你引入的依赖模块大小:Import Cost(可不安装)
# 查查看 git 提交历史:Git History(可不安装)
# 维护文件: utils/index.ts,utils/validate.ts,utils/request.ts
# 克隆项目
git clone http://192.168.1.118/wujie/wit-plus.git
# 安装pnpm
npm install -g pnpm
# 安装淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 安装yarn
npm install -g yarn
# 查看当前npm源
npm config get registry
# 设置npm源
npm set registry http://192.168.1.181:4873/
# 查看当前pnpm源
pnpm config get registry
# 设置pnpm源
pnpm set config registry http://192.168.1.181:4873/
# 查看当前yarn源
yarn config get registry
# 设置yarn源
yarn config set registry http://192.168.1.181:4873/
# 安装依赖(pnpm、yarn、cnpm、npm均可,推荐用pnpm或cnpm)
pnpm i
# 本地开发
npm run dev
# 生产打包
npm run build
# npm查看缓存路径
npm config get cache
# npm删除缓存
npm cache clean --force
# pnpm查看缓存路径
pnpm store path
# pnpm删除缓存
pnpm store prune
# yarn查看缓存路径
yarn cache dir
# yarn删除缓存
yarn cache clean
# 发布包到npm私有库(http://192.168.1.181:4873/)
pnpm run pub
# 撤销发布的包
pnpm unpublish wit-plus@ + 版本号