Vue-cli reported an error 'Invalid Version:' + version when packing.

first talk about my local environment: win7x64, node version v7.0 x64. There is no problem when vue-cli, npm run dev is installed globally, and the demo page

npm run build:

can be displayed normally.

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

the methods I have tried are as follows:

-  nodev6.5 v7.0 v8.1
-  node_modules
-  vue init webpack work 
-  npm cache
Mar.04,2021

I made some changes in semver.js

Range.prototype.test = function(version) {
  // PPPPPPPPPPPPPPPPPPPPPPPPPPPPPP+ liuqing 2018.04.23
  return true;
  // PPPPPPPPPPPPPPPPPPPPPPPPPPPPPP+ 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; iPP) {
    if (testSet(this.set[i], version))
      return true;
  }
  return false;
};

if you do not check the version, you will not report an error, but it is not known which plug-in it is and why.

Menu