Fix various issues

This commit is contained in:
Alex
2023-08-24 07:23:35 -04:00
parent fda7f22872
commit 743dce09ae
5 changed files with 15 additions and 9 deletions

15
pull.sh
View File

@ -1,6 +1,11 @@
#!/bin/bash
(cd eslint-plugin-import && git pull)
(cd eslint-plugin-jsx-a11y && git pull)
(cd jsx-ast-utils && git pull)
(cd eslint-plugin-react && git pull)
(cd eslint-plugin-n && git pull)
pull() {
echo "🚛 Pulling $1"
(cd "$1" && git pull)
}
pull eslint-plugin-import
pull eslint-plugin-jsx-a11y
pull jsx-ast-utils
pull eslint-plugin-react
pull eslint-plugin-n