Skip to content

Commit 7a79560

Browse files
committed
chore: utils
1 parent 9d91d7e commit 7a79560

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/utils/dependency.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ const items: QuickPickItem[] = pm.map((item) => {
1616
}
1717
})
1818

19-
interface Dependency {
20-
name: string;
21-
version: string;
22-
}
19+
interface Dependency { name: string; version: string; }
2320

2421
export const getProjectDependencies = async (): Promise<Dependency[]> => {
25-
const dependencies: { name: string; version: string }[] = [];
22+
const dependencies: Dependency[] = [];
2623

2724
let packageJsonPath = `${projectRootDirectory()}/package.json`
2825

src/utils/nuxt.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { join } from 'path';
44
import { parseModule } from 'magicast';
55
import { readTSConfig } from 'pkg-types'
66
import { projectRootDirectory, projectSrcDirectory } from '.';
7-
import * as vscode from 'vscode';
87
type TsconfigPaths = Record<string, string[]>;
98

109

0 commit comments

Comments
 (0)