Skip to content

Instantly share code, notes, and snippets.

@pipoblak
Last active February 10, 2023 16:43
Show Gist options
  • Save pipoblak/b3e70826dd86cfe95de381c0522e567f to your computer and use it in GitHub Desktop.
Save pipoblak/b3e70826dd86cfe95de381c0522e567f to your computer and use it in GitHub Desktop.
Install all parcel-plugins
#!/bin/bash
root_dir=$1
command=$2
for dir in $(find parcel-plugins -type d); do
cd "$dir"
npm install
npm run build
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment