We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3064e0d commit fcbaf51Copy full SHA for fcbaf51
lib/tools/node-modules/node-modules-dest-copy.ts
@@ -42,7 +42,7 @@ export class TnsModulesCopy {
42
43
const isScoped = dependency.name.indexOf("@") === 0;
44
const destinationPath = isScoped ? path.join(this.outputRoot, dependency.name.substring(0, dependency.name.indexOf("/"))) : this.outputRoot;
45
- shelljs.cp("-RfL", dependency.directory, destinationPath);
+ shelljs.cp("-RuL", dependency.directory, destinationPath);
46
47
// remove platform-specific files (processed separately by plugin services)
48
shelljs.rm("-rf", path.join(targetPackageDir, "platforms"));
0 commit comments