版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
1234567891011121314
  1. // src/dep.ts
  2. import { getPackageInfoSync } from "local-pkg";
  3. function detectVueVersion(root = process.cwd()) {
  4. const vuePkg = getPackageInfoSync("vue", { paths: [root] });
  5. if (vuePkg) {
  6. return +vuePkg.version.slice(0, 1);
  7. } else {
  8. return 3;
  9. }
  10. }
  11. export {
  12. detectVueVersion
  13. };