Skip to content

Commit

Permalink
fix(devkit): add font file extensions to binaryExts in generate-files…
Browse files Browse the repository at this point in the history
….ts (#6439)

Add font file extensions to the list of extensions that should not be rendered with ejs

ISSUES CLOSED: #5213

Co-authored-by: egiroux <erika.giroux@ubisoft.com>
  • Loading branch information
erikagiroux and erikagiroux committed Jul 29, 2021
1 parent 4e8aa4b commit 9f1e530
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/devkit/src/generators/generate-files.ts
Expand Up @@ -27,6 +27,13 @@ const binaryExts = new Set([
// Java files
'.jar',
'.keystore',

// Font files
'.ttf',
'.otf',
'.woff',
'.woff2',
'.eot',
]);

/**
Expand Down

0 comments on commit 9f1e530

Please sign in to comment.