mirror of
https://github.com/thejusticeman/obsidian-mobile-plugin.git
synced 2026-07-22 06:40:12 +00:00
7 lines
128 B
Bash
7 lines
128 B
Bash
# remove node_modules if it exists
|
|
if [ -d "node_modules" ]; then
|
|
rm -rf node_modules
|
|
fi
|
|
|
|
# install dependencies
|
|
npm run init
|