Skip to content

Instantly share code, notes, and snippets.

@devopsmariocom
Last active November 30, 2015 17:08
Show Gist options
  • Save devopsmariocom/40fbce453d85760b34b5 to your computer and use it in GitHub Desktop.
Save devopsmariocom/40fbce453d85760b34b5 to your computer and use it in GitHub Desktop.
Remove javascript files from typescript project
#!/bin/zsh
find . -name '*.js.map' -exec sh -c 'rm ${0%.map}.js $0' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment