We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89b85a7 commit dd50478Copy full SHA for dd50478
src/utils/getProjectDeps.ts
@@ -13,7 +13,7 @@ export const getProjectDependencies = async (): Promise<Dependency[]> => {
13
if (!existsSync(packageJsonPath)) {
14
return [];
15
} else {
16
-const { readPackageJSON } = await import("pkg-types");
+ const { readPackageJSON } = await import("pkg-types");
17
const packageJSON = await readPackageJSON(packageJsonPath);
18
19
const addDependencies = (depObj: Record<string, string> | undefined) => {
0 commit comments