mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-05-20 17:59:38 +00:00
12 lines
No EOL
421 B
Bash
Executable file
12 lines
No EOL
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' |