apptools-lab / AppWorks

🐻 基于 VS Code 插件的前端研发工具集,站点国内镜像:https://apptools.gitee.io

Home Page:https://appworks.site/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

When calling the scan method of @appworks/doctor without passing any options, an error is thrown

huangguangfa opened this issue · comments

commented

插件名/Extension: @appworks/doctor

您的本地环境信息/Your local environment information

  • 操作系统及其版本/System and Version: macos
  • Node version: v16.13.1
  • npm version: 8.1.2

您遇到的问题及复现步骤/What are your problems and how to reproduce them

import { Doctor } from '@appworks/doctor';

function start() {
const doctor = new Doctor();
doctor.scan('path').then((result) => {
console.log(result);
});
}

start();

您期待的正确结果/The right result you're looking forward to