mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 01:40:17 +00:00
8 lines
159 B
Bash
8 lines
159 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$(npm --version 2> /dev/null)" ]; then
|
|
webi node
|
|
export PATH="$HOME/.local/opt/node/bin:$PATH"
|
|
fi
|
|
npm install -g prettier@latest
|