Guest User

Untitled

a guest
Jul 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // build
  2. ng build --prod
  3.  
  4. // gzip
  5. find dist -type f -exec sh -c "gzip < {} > {}.gz" \;
  6.  
  7. // brotli
  8. find dist -type f -not -name "*.gz" -exec sh -c "bro --input {} --output {}.br" \;
Add Comment
Please, Sign In to add comment