#!/bin/env bash
find . \
  -type f \
  \( -path ".git" -o -path '*/node_modules/*' \) -prune -o \
  \( -name "*.html" -o -name "*.js" \) -print0 \
  | xargs -0 grep -n --color "$@"
