#!/usr/bin/env bash

find . -name '*.js*' -type f -not -path './package.json' -not -path './node_modules/*' -exec rm {} \;
