当前位置: 首页 > 工具软件 > yalc > 使用案例 >

link工具yalc@1.0.0-pre.53

湛玄裳
2023-12-01

npm link本地包做做调试流程:
安装yalc :npm install yalc -g

安装nodemon:npm install nodemon -g

1.本地宝发布:yalc publish

2.本地包package.json的scripts添加监听"watch": “nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e vue -x yalc push”

3.项目中运行 yalc link 包名

当本地包中更新时,会自动映射到项目中更新

yalc remove --all 移除所以依赖

nodemon指令

–ignore dist/ # 忽略目录

–ignore node_modules/ --watch projects # 观察目录

-C # 只在变更后执行,首次启动不执行命令

-e ts,html,less,scss # 监控指定后缀名的文件

–debug # 调试

-x “npm run build && yalc push” # 自定义命令

 类似资料: