mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
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:
parent
afeb0fc792
commit
1ec68b6917
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user