Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
voxsim committed Jun 20, 2017
1 parent 1aa891e commit 95b892e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/commands/install/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ test.concurrent('install should be idempotent', (): Promise<void> => {
async (config, reporter) => {
expect(await getPackageVersion(config, 'dep-a')).toEqual('1.0.0');
},
null
null,
);

return runInstall({}, 'install-should-be-idempotent', async (config, reporter) => {
Expand Down
2 changes: 1 addition & 1 deletion src/package-linker.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export default class PackageLinker {
// after hoisting we end up with this structure
// root/node_modules/workspace-package(symlink)/node_modules/package-a
// fs.copy operations can't copy files through a symlink, so all the paths under workspace-package
// need to be replaced with a real path, except for the symlink root/node_modules/workspace-package
// need to be replaced with a real path, except for the symlink root/node_modules/workspace-package
dest = dest.replace(symlink, realpath);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/resolvers/exotics/tarball-resolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class TarballResolver extends ExoticResolver {
registry,
hash,
},
this.config
this.config,
);

// fetch file and get it's hash
Expand Down

0 comments on commit 95b892e

Please sign in to comment.