Decoupled Plugins: Prevent copying project.json into dist directories (#94952)
fix(plugin-configs): prevent copying project.json into dist directories
This commit is contained in:
@@ -22,6 +22,10 @@ function skipFiles(f: string): boolean {
|
||||
// avoid copying package.json
|
||||
return false;
|
||||
}
|
||||
if (f.includes('/project.json')) {
|
||||
// avoid copying project.json
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user