mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
fix(NA): dont clean dll module if it is a package json file (#42904)
This commit is contained in:
parent
556d98e499
commit
042307e48d
1 changed files with 4 additions and 0 deletions
|
@ -73,6 +73,10 @@ export const CleanClientModulesOnDLLTask = {
|
|||
for (const relativeEntryPath of dllEntries) {
|
||||
const entryPath = `${baseDir}/${relativeEntryPath}`;
|
||||
|
||||
if (entryPath.endsWith('package.json')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Clean a module included into the dll
|
||||
// and then write a blank file for each
|
||||
// entry file present into the dll
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue