Skip to content

Commit

Permalink
chore: Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Dec 2, 2023
1 parent 293cadb commit 41a2c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/initial-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export function getPackages(sourcePath: Source['path'], workspaces: ReturnType<t
}

export function getDestinationPackages(sourcePackages: SourcePackages) {
const destPkgJson = destr<{ dependencies?: Record<string, string>; devDependencies?: Record<string, string> }>(fs.readFileSync(join(currentDir, 'package.json'), 'utf-8'))
const destPkgJson = destr<{ dependencies?: Record<string, string>, devDependencies?: Record<string, string> }>(fs.readFileSync(join(currentDir, 'package.json'), 'utf-8'))

if (!destPkgJson)
return []
Expand Down

0 comments on commit 41a2c42

Please sign in to comment.