File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/cli/src/commands Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import path from "path";
2
2
import inquirer from "inquirer" ;
3
3
import { run , RunOptions } from "npm-check-updates" ;
4
4
import { installDependencies } from "../utils/installDependencies.js" ;
5
- import { Index } from "npm-check-updates/build/src/types/IndexType.js" ;
6
5
import { readJSONFileSync , writeJSONFile } from "../utils/fileSystem.js" ;
7
6
8
7
export async function updateCommand ( projectPath : string ) {
@@ -35,7 +34,7 @@ export async function updateCommand(projectPath: string) {
35
34
} ;
36
35
37
36
// Can either give a json like package.json or just with deps and their new versions
38
- const updatedDependencies : Index | void = await run ( ncuOptions ) ;
37
+ const updatedDependencies : { [ k : string ] : any } | void = await run ( ncuOptions ) ;
39
38
40
39
if ( ! updatedDependencies ) return ;
41
40
You can’t perform that action at this time.
0 commit comments