pnpm报错如Runing this command will add the dependency to the workspace root所示

Running this command will add the dependency to the workspace root, which might not be what you want - if you really meant it, make it explicit by running this command again with the -w flag (or --workspace-root). If you don't want to see this warning anymore, you may set the ignore-workspace-root-check setting to true.
报错触发场景:当在采用pnpm搭建的menorepo项目根目录下执行pnpm dlx @eslint/create-config后会报错,原因是在根目录下安装依赖是不被允许,解决办法如下:

pnpm config set ignore-workspace-root-check true

之后再在根目录下面安装依赖就不会报错了。

相关推荐
GISer_Jing6 分钟前
Vue前端进阶面试题(六)
前端·javascript·vue.js
之诚16 分钟前
使用Gradle编译前端的项目
前端·vue·gradle
FenceRain24 分钟前
uniapp 扩展picker-view实现条件查询
前端·javascript·uni-app
喵喵酱仔__26 分钟前
uniapp echarts tooltip formation 不识别html
前端·javascript·echarts
new出一个对象27 分钟前
uniapp在App端定义全局弹窗,当打开关闭弹窗会触发onShow、onHide生命周期怎么解决?
前端·uni-app
EterNity_TiMe_1 小时前
【论文复现】上下位关系自动检测方法
前端·javascript·网络·人工智能·前端框架·easyui
天农学子1 小时前
Easyui 实现订单拆分开票功能
前端·javascript·easyui
Swift社区1 小时前
工具与技术在 Debug 中的应用
前端·typescript·debug
阿珊和她的猫1 小时前
React中事件处理和合成事件:理解与使用
前端·react.js·前端框架
打小就很皮...1 小时前
深入理解React Hooks:使用useState和useEffect
前端·react.js