updated node setup
This commit is contained in:
parent
ba1e15122f
commit
2758993078
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
from src.util import paru_install
|
from src.util import paru_install
|
||||||
|
|
||||||
from os import system
|
from os import system
|
||||||
|
|
||||||
name = "node"
|
name = "node"
|
||||||
|
@ -18,4 +19,9 @@ def setup():
|
||||||
check .zshrc for bin path stuff
|
check .zshrc for bin path stuff
|
||||||
"""
|
"""
|
||||||
|
|
||||||
paru_install(["nodejs", "nvm", "npm", "yarn"])
|
paru_install("nvm")
|
||||||
|
|
||||||
|
system("nvm install --lts")
|
||||||
|
|
||||||
|
system("npm install --global pnpm")
|
||||||
|
system("npm install --global yarn")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue