This commit is contained in:
Alex
2023-09-11 14:40:55 -04:00
parent 9bba0b4d03
commit 729172af89
15 changed files with 638 additions and 414 deletions

View File

@ -1,7 +1,9 @@
#!/bin/bash
set -e
pull() {
echo "🚛 Pulling $1"
(cd "packages/$1" && git pull)
(cd "packages/$1" && git config pull.rebase true && git config rebase.autoStash true && git pull)
}
pull eslint-import-resolver-typescript