Skip to content

Instantly share code, notes, and snippets.

@jpesce
Created June 21, 2021 18:58
Show Gist options
  • Save jpesce/9405d9d2cb6b64b3c42b065eb89d4a0f to your computer and use it in GitHub Desktop.
Save jpesce/9405d9d2cb6b64b3c42b065eb89d4a0f to your computer and use it in GitHub Desktop.
[CSS Inventory] Find all used values for a CSS property in the project
# Exclude node_modules and .git directory
rg --no-ignore-vcs --glob '!{node_modules/*,.git/*}' --follow --no-filename --no-line-number "font-weight" * | sed 's/^[ \t]*//;s/[ \t]*$//' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment