博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue打包时semver.js版本报错
阅读量:5220 次
发布时间:2019-06-14

本文共 569 字,大约阅读时间需要 1 分钟。

1085921-20190522164504527-1597846484.png

如图,报错semver.js版本不正确,解决思路是在node_modules/semver.js内,忽略版本检查

'''

// if ANY of the sets match ALL of its comparators, then pass
Range.prototype.test = function(version) {
// ignore the version of this file
return true;
// ignore the version of this file
if (!version)
return false;

if (typeof version === 'string')

version = new SemVer(version, this.options);

for (var i = 0; i < this.set.length; i++) {

if (testSet(this.set[i], version, this.options))
return true;
}
return false;
};
'''

如此,再次npm run build可以正常打包

转载于:https://www.cnblogs.com/midnight-visitor/p/10906921.html

你可能感兴趣的文章
apidoc
查看>>
3月14日-15日学习总结
查看>>
关于 ++x 和 x++ 比较难的一个例子
查看>>
第三次作业 105032014021
查看>>
记录一些容易忘记的属性 -- UILabel
查看>>
android新手关于左右滑动的问题,布局把<android.support.v4.view.ViewPager/><ImageView/> 放在上面就不行了。...
查看>>
人脸识别FaceNet+TensorFlow
查看>>
STL之map UVa156
查看>>
从Angular.JS菜鸟到专家
查看>>
再谈Vmware NAT的配置和路由流程
查看>>
javaScript数组去重方法汇总
查看>>
评价意见整合
查看>>
MySQL表的四种分区类型
查看>>
C++变量的“总分性”(Mereology)
查看>>
应用软件学习心得之mapgis功能学习
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
Python学习(一)
查看>>
关于Matchvs一些使用心得与建议
查看>>
Gson获取json串中的key-value
查看>>