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