Sign in
chromium
/
devtools
/
devtools-frontend
/
eb2959747e55568068fe4a143ba254475cb8403b
/
.
/
scripts
/
migration
/
remove-unused-globals.sh
blob: 70e7d995adae4e5fde0481149f2da6a011eeecd6 [
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
npm run build
for
file
in
$directories
;
do
npm run remove
-
unused $file
done