vue-cli 打包时候 报错'Invalid Version: ' + version。

先说一下我本地环境: win7x64, node版本v7.0 x64。全局安装了vue-cli ,npm run dev的时候也是没有问题的,可以正常显示demo页面
图片描述

图片描述

但是npm run build的时候,就会报错,如下:

图片描述


E:\work\node_modules\semver\semver.js:305
    throw new TypeError('Invalid Version: ' + version);
    ^

TypeError: Invalid Version: 3.10.8
EnumerateProviders catalog=0
EnumerateProviders totalPro=22
    at new SemVer (E:\work\node_modules\semver\semver.js:305:11)
    at Range.test (E:\work\node_modules\semver\semver.js:1112:15)
    at Function.satisfies (E:\work\node_modules\semver\semver.js:1161:16)
    at module.exports (E:\work\build\check-versions.js:33:17)
    at Object.<anonymous> (E:\work\build\build.js:2:28)
    at Module._compile (module.js:573:32)
    at Object.Module._extensions..js (module.js:582:10)
    at Module.load (module.js:490:32)
    at tryModuleLoad (module.js:449:12)
    at Function.Module._load (module.js:441:3)
EnumerateProviders catalog=0
EnumerateProviders totalPro=22

npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\                                                                                                                                                                                               node_modules\\npm\\bin\\npm-cli.js" "run" "build"
npm ERR! node v7.0.0
npm ERR! npm  v3.10.8
npm ERR! code ELIFECYCLE
npm ERR! work@1.0.0 build: `node build/build.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the work@1.0.0 build script 'node build/build.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the work package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node build/build.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs work
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls work
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     E:\work\npm-debug.log
EnumerateProviders catalog=0
EnumerateProviders totalPro=22

我已经尝试的办法如下:

-  重新安装node(v6.5 v7.0 v8.1)
-  删除node_modules目录重新安装
-  重新vue init webpack work 
-  清理npm cache
但是依然没有解决问题,请路过的遇到该问题的大事给个提示。谢谢
阅读 7.9k
1 个回答

我在semver.js里做了一些改动

Range.prototype.test = function(version) {
  // +++++++++++++++++++++++++++++++ liuqing 2018.04.23
  return true;
  // +++++++++++++++++++++++++++++++ liuqing 2018.04.23
  if (!version)
    return false;

  if (typeof version === 'string')
    version = new SemVer(version, this.loose);

  for (var i = 0; i < this.set.length; i++) {
    if (testSet(this.set[i], version))
      return true;
  }
  return false;
};

不检查版本了,就不报错了,但是具体是哪个哪个插件、为什么报错不得而知

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题