mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
10 lines
357 B
Bash
Executable File
10 lines
357 B
Bash
Executable File
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
echo "====== Removing Alfresco dependencies from package.json ====="
|
|
|
|
grep -wirn '@alfresco\/adf*' $DIR/../package.json
|
|
sed -i '' 's/"@alfresco\/adf-[^,]*,//' $DIR/../package.json
|
|
sed -i '' '/^[[:space:]]*$/d' $DIR/../package.json
|
|
|
|
echo "====== Alfresco dependencies removed from package.json ====="
|