Last active
November 30, 2015 17:08
-
-
Save devopsmariocom/40fbce453d85760b34b5 to your computer and use it in GitHub Desktop.
Remove javascript files from typescript project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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