From 73a758ea37f573a25279d3acf2e9501988b249c8 Mon Sep 17 00:00:00 2001 From: Konstantin Raev Date: Tue, 20 Jun 2017 16:02:23 -0700 Subject: [PATCH] fixed lint error (#3684) --- src/package-linker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package-linker.js b/src/package-linker.js index 3c600b2f1c..0540579093 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); } }