Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dishuostec committed Jul 22, 2020
1 parent 5fb0dd7 commit a45b5dc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/core/package-manager/src/Pnpm.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export class Pnpm implements PackageInstaller {
async install({
modules,
cwd,
packagePath,
saveDev = true,
}: InstallerOptions): Promise<void> {
let args = ['install', '--reporter ndjson', saveDev ? '--dev' : ''].concat(
Expand Down Expand Up @@ -85,11 +84,9 @@ export class Pnpm implements PackageInstaller {
addedCount += json.added || 0;
removedCount += json.removed || 0;

const data = JSON.stringify(json);

logger.info({
origin: '@parcel/package-manager',
message: prefix(data),
message: prefix(JSON.stringify(json)),
});
return;
}
Expand Down

0 comments on commit a45b5dc

Please sign in to comment.