EMP 梳理记录

本文章主要记录emp的使用过程,包含一下知识点:

  • 脚手架搭建
  • lerna 基本使用方法
  • NPM包发布
  • WebPack 知识点

准备工作

安装lerna: npm install --global lerna
克隆emp: git clone https://github.com/efoxTeam/emp.git
安装依赖包: cd emp && lerna bootstrap

修改记录

package.json
- "repository": "https://github.com/efoxTeam/emp.git",
+ "repository": "https://gitee.com/micro-front-end/emp.git",
- "author": "ken ",
+ "author": "jenkin",
packages/emp-cli/package.json
- "name": "@efox/emp-cli",
+ "name": "@jkyu/emp-cli",
  "repository": {
    "type": "git",
-   "url": "git+https://github.com/efoxTeam/emp.git",
+   "url": "git+https://gitee.com/micro-front-end/emp.git",
    "directory": "packages/emp-cli"
  },
packages/emp-cli/bin/emp.js
 const table = new Table({
    head: ['Emp & Deps', 'Version'],
+   colWidths:[50,50],
 ......

参考

npm模块管理器
使用lerna管理大型前端项目
commitlint+husky规范commit 日志
cli-table3

你可能感兴趣的:(脚手架)