diff --git a/__tests__/commands/install/integration.js b/__tests__/commands/install/integration.js index 6d7fb208bc..ff8e1cb782 100644 --- a/__tests__/commands/install/integration.js +++ b/__tests__/commands/install/integration.js @@ -471,7 +471,7 @@ test.concurrent('install should be idempotent', (): Promise => { async (config, reporter) => { expect(await getPackageVersion(config, 'dep-a')).toEqual('1.0.0'); }, - null + null, ); return runInstall({}, 'install-should-be-idempotent', async (config, reporter) => { diff --git a/src/package-linker.js b/src/package-linker.js index 7782ee3fc0..f17eff1554 100644 --- a/src/package-linker.js +++ b/src/package-linker.js @@ -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); } } diff --git a/src/resolvers/exotics/tarball-resolver.js b/src/resolvers/exotics/tarball-resolver.js index 40a6adaad6..61754bf465 100644 --- a/src/resolvers/exotics/tarball-resolver.js +++ b/src/resolvers/exotics/tarball-resolver.js @@ -73,7 +73,7 @@ export default class TarballResolver extends ExoticResolver { registry, hash, }, - this.config + this.config, ); // fetch file and get it's hash