Skip to content

Commit

Permalink
fix(devkit): add '.tgz' to binaryExts array (nrwl#6930)
Browse files Browse the repository at this point in the history
devkit's generateFiles function excludes parsing binary files with the templating engine.
This
patch adds .tgz files to the list of binary files to ignore.
  • Loading branch information
russormes authored and ManojBahuguna committed Sep 16, 2021
1 parent f560ff2 commit c6bd320
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/devkit/src/generators/generate-files.ts
Expand Up @@ -23,6 +23,7 @@ const binaryExts = new Set([
'.jpx',
'.heic',
'.cur',
'.tgz',

// Java files
'.jar',
Expand Down

0 comments on commit c6bd320

Please sign in to comment.