标签:解决办法 lifecycle target 克隆 扩展程序 output get oca targe
换电脑之后安装vue-devtools工具时出现错误:
操作:
1、https:
//github
.com
/vuejs/vue-devtools
.git 直接down下来
2、npm install
3、npm run build
报错:
npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! vue-devtools@5.3.3 build: `cd packages/shell-chrome && webpack --progress --hide-modules` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the vue-devtools@5.3.3 build script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm WARN Local package.json exists, but node_modules missing, did you mean to install?
网上查找资料:洋葱先生: http://www.dreamload.cn/blog/?p=975&preview=true(感谢作者)
原因:
因为我们git clone时默认分支为最新的develop分支。develop是测试分支,不是正式分支,git时更换分支即可。
本人亲测v5.1.1分支是可用的,估计再向前的分支也是可用,当然master分支更是可用。
正确方法:(使用分支:v5.1.1)
1、克隆
git clone -b v5.1.1 https:
//github
.com
/vuejs/vue-devtools
.git
2、安装依赖
npm install
3、构建
npm run build
4、chrome中找到 更多工具 / 扩展程序 选项,勾选 开发者模式,然后点击 加载已解压的扩展程序,选择vue-devtools\shells\chrome,确认
vue-devtools安装打包时报错:code ELIFECYCLE
标签:解决办法 lifecycle target 克隆 扩展程序 output get oca targe
原文地址:https://www.cnblogs.com/tizi/p/13183712.html