Skip to content

Commit

Permalink
fix(NA): dont clean dll module if it is a package json file (#42904) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic authored Aug 12, 2019
1 parent 34f51bc commit d5e99bb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d5e99bb

Please sign in to comment.