Skip to content

Commit 9b59b2c

Browse files
committed
Removed unused object destructuring.
1 parent d60363b commit 9b59b2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const loadAndParsePackageFile = async path => {
6868

6969
await writeFile(
7070
join(workspace, './package.json'),
71-
`${JSON.stringify({ ...pkg }, null, 2)}\n`
71+
`${JSON.stringify(pkg, null, 2)}\n`
7272
);
7373
})
7474
);

0 commit comments

Comments
 (0)