Sign in
cobalt
/
cobalt
/
e83fce97d7405b0b5e569d961aa431b1112ac6ac
/
.
/
src
/
third_party
/
devtools
/
scripts
/
migration
/
remove-unused-globals.sh
blob: 81ff90ee9def68f88084c843e4b64defd8e9e6d3 [
file
] [
log
] [
blame
]
#!/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