2020-10-07 13:49:40 +05:00
|
|
|
#!/bin/bash -e
|
2019-11-15 15:23:41 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: nodejs.sh
|
2019-12-13 09:48:00 -05:00
|
|
|
## Desc: Installs Node.js LTS and related tooling (Gulp, Grunt)
|
2019-11-15 15:23:41 -05:00
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
# Install LTS Node.js and related build tools
|
2020-02-07 15:17:43 +03:00
|
|
|
curl -sL https://raw.githubusercontent.com/mklement0/n-install/stable/bin/n-install | bash -s -- -ny -
|
2019-11-15 15:23:41 -05:00
|
|
|
~/n/bin/n lts
|
2020-07-07 08:37:15 +00:00
|
|
|
npm install -g grunt gulp n parcel-bundler typescript newman
|
2019-11-15 15:23:41 -05:00
|
|
|
npm install -g --save-dev webpack webpack-cli
|
|
|
|
|
npm install -g npm
|
|
|
|
|
rm -rf ~/n
|
|
|
|
|
|
|
|
|
|
# Install Yarn repository and key
|
|
|
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
|
|
|
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
|
|
|
|
|
apt-get update
|
|
|
|
|
|
|
|
|
|
# Install yarn
|
|
|
|
|
apt-get install -y --no-install-recommends yarn
|
|
|
|
|
|
2020-12-31 10:00:43 +03:00
|
|
|
invoke_tests "Tools" "Node.js"
|