Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles committed Mar 3, 2023
1 parent 194fa1b commit 7b4448f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/sync.js
Expand Up @@ -12,7 +12,7 @@ module.exports = {
const { $ } = await import('zx');

const pkg = await loadJsonFile('./package.json');
const { name: targetName, devDependencies = {} } = pkg;
const { devDependencies = {}, name: targetName } = pkg;
const devDeps = new Set(Object.keys(devDependencies));

// Uninstall unneeded development dependencies.
Expand Down

0 comments on commit 7b4448f

Please sign in to comment.