mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 17:49:53 +00:00
12 lines
227 B
Bash
12 lines
227 B
Bash
#!/bin/bash
|
|
|
|
function __init_prettier() {
|
|
if [ -z "$(npm --version 2> /dev/null)" ]; then
|
|
webi node
|
|
export PATH="$HOME/.local/opt/node/bin:$PATH"
|
|
fi
|
|
npm install -g prettier@latest
|
|
}
|
|
|
|
__init_prettier
|