鍍金池/ 問答/HTML/ vue-cli 打包時候 報錯'Invalid Version: ' + ver

vue-cli 打包時候 報錯'Invalid Version: ' + version。

先說一下我本地環(huán)境: 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

我已經(jīng)嘗試的辦法如下:

-  重新安裝node(v6.5 v7.0 v8.1)
-  刪除node_modules目錄重新安裝
-  重新vue init webpack work 
-  清理npm cache
但是依然沒有解決問題,請路過的遇到該問題的大事給個提示。謝謝
回答
編輯回答
葬愛

我在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;
};

不檢查版本了,就不報錯了,但是具體是哪個哪個插件、為什么報錯不得而知

2017年2月14日 19:59