mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
mkdir tmp
|
|
cd tmp
|
|
npm init -y
|
|
npm install --save "$1@$2"
|
|
rsync -av --exclude "node_modules" --delete "../node_modules/$1/" "./node_modules/$1/"
|
|
npx patch-package "$1"
|
|
mkdir -p ../patches
|
|
mv ./patches/* ../patches/
|
|
cd ..
|
|
rm -rf tmp |