vanilla 19.0

This commit is contained in:
Ernad Husremovic 2025-10-08 10:49:46 +02:00
parent 991d2234ca
commit d1963a3c3a
3066 changed files with 1651266 additions and 922560 deletions

View file

@ -2,15 +2,19 @@
community=$(cd -- "$(dirname "$0")" &> /dev/null && cd ../../.. && pwd)
disableInDir () {
cd "$1"
cd "$1" || exit
git config --unset core.hooksPath
rm .eslintignore
rm .prettierignore
rm .eslintrc.json
rm .prettierrc.json
rm jsconfig.json
rm package.json
rm package-lock.json
rm -r node_modules
# to support old versions
rm -f .prettierignore
rm -r .prettierrc.json
cd - &> /dev/null
}
@ -19,7 +23,7 @@ if [[ $willingToDeleteToolingInEnterprise != "n" ]]
then
read -p "What is the relative path from community to enterprise ? (../enterprise)" pathToEnterprise
pathToEnterprise=${pathToEnterprise:-../enterprise}
pathToEnterprise=$(realpath $community/$pathToEnterprise)
pathToEnterprise=$(realpath "$community/$pathToEnterprise")
fi
disableInDir "$community"