Sign in
cobalt
/
cobalt.git
/
04cd6faca4dd5039a1b810e9ba7b7a79e51a781d
/
.
/
src
/
cobalt
/
debug
/
remote
/
devtools
/
scripts
/
migration
/
remove-unused-globals.sh
blob: 81ff90ee9def68f88084c843e4b64defd8e9e6d3 [
file
]
#!/bin/bash
script_full_path
=
$
(
dirname
"$0"
)
directories
=
$
(
find
"$script_full_path/../../front_end/"
-
type d
-
maxdepth
1
-
mindepth
1
-
printf
'%f\n'
)
cd $script_full_path
for
file
in
$directories
;
do
npm run remove
-
unused $file
done