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";
22import inquirer from "inquirer" ;
33import { run , RunOptions } from "npm-check-updates" ;
44import { installDependencies } from "../utils/installDependencies.js" ;
5- import { Index } from "npm-check-updates/build/src/types/IndexType.js" ;
65import { readJSONFileSync , writeJSONFile } from "../utils/fileSystem.js" ;
76
87export async function updateCommand ( projectPath : string ) {
@@ -35,7 +34,7 @@ export async function updateCommand(projectPath: string) {
3534 } ;
3635
3736 // 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 ) ;
3938
4039 if ( ! updatedDependencies ) return ;
4140
You can’t perform that action at this time.
0 commit comments