前言
公司内部统一使用一套相同的UI组件,将该组件发布到私有服务器上,方便不同子公司开发管理。
想法
通过网上相关网友推荐,使用verdaccio搭建为目前主流方案。
开发与发布
- 使用uniapp创建一个最基础的项目
- 在项目中生成package.json
npm init
package.json
{
"name": "cndapp-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
},
"author": "",
"license": "ISC",
"dependencies": {
},
"devDependencies": {
}
}