Skip to content

Commit

Permalink
Use Node.js 12.x as default
Browse files Browse the repository at this point in the history
  • Loading branch information
szyn authored and frsyuki committed Jan 8, 2020
1 parent 384e1c9 commit a21cf40
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -13,16 +13,16 @@ Please check [digdag.io](https://digdag.io) and [docs.digdag.io](https://docs.di
### Prerequirements

* JDK 8
* Node.js 8.x
* Node.js 12.x

Installing Node.js using nodebrew:

```
$ curl -L git.io/nodebrew | perl - setup
$ echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bashrc
$ source ~/.bashrc
$ nodebrew install-binary v8.x
$ nodebrew use v8.x
$ nodebrew install-binary v12.x
$ nodebrew use v12.x
```

Installing Node.js using Homebrew on Mac OS X:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -18,7 +18,7 @@ environment:
- JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0

install:
- ps: Install-Product node '8'
- ps: Install-Product node '12'
- node --version
- npm --version

Expand Down
2 changes: 1 addition & 1 deletion docker/bootstrap/dependencies.sh
Expand Up @@ -8,7 +8,7 @@ apt-get -y install maven

# npm
apt-get -y install curl
curl -sL https://deb.nodesource.com/setup_8.x | bash -
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get -y install nodejs

# Docker required by CircleCI to execute docker command in Docker container
Expand Down

0 comments on commit a21cf40

Please sign in to comment.