Guest User

Untitled

a guest
Jan 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # before
  2. "scripts": {
  3. "purge": "purgecss --css input.css --content index.html --out /purged/"
  4. },
  5. npm run foo
  6.  
  7. # after
  8. ./node_modules/.sbin/purgecss --css input.css --content index.html --out /purged/
  9.  
  10. # another method
  11. ./node_modules/purgecss/bin/purgecss --css input.css --content index.html --out /purged/
Add Comment
Please, Sign In to add comment