This commit is contained in:
Aleksander Barszczewski 2018-10-25 11:26:25 +02:00
parent d370c57620
commit a7ddbb3088
2 changed files with 15 additions and 0 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
.PHONY: configure
configure:
./scripts/configure
install:
yarn

10
scripts/configure vendored Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
export NODE_VERSION=8.10.0
echo "Configure - start"
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash && \
source ~/.bashrc && \
nvm install $NODE_VERSION && \
npm install -g yarn && \
echo "Configure - done"