mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-09-03 05:10:00 +03:00
12 lines
421 B
Bash
Executable File
12 lines
421 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo 'Adding node_modules to path'
|
|
echo 'export PATH=/workspaces/node_modules/.bin:/workspaces/docsite/node_modules/.bin:$PATH' >> /home/node/.bashrc
|
|
|
|
echo 'Updating npm...'
|
|
npm install -g npm@11.12.1
|
|
|
|
echo 'Installing concurrently...'
|
|
npm install -g concurrently
|
|
|
|
echo 'If you have freshly cloned this project or node_modules folder does not exist then you should run "npm run install:parallel" now' |