Skip to content

Commit

Permalink
use node LTS 14
Browse files Browse the repository at this point in the history
  • Loading branch information
PiTrem committed Jul 6, 2021
1 parent 045e069 commit 47d971b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.22.1
v14.16.0
2 changes: 1 addition & 1 deletion config/deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
set :bundle_jobs, 4 # parallel bundler

set :nvm_type, :user
set :nvm_node, File.exist?('.nvmrc') && File.read('.nvmrc').strip || 'v12.22.1'
set :nvm_node, File.exist?('.nvmrc') && File.read('.nvmrc').strip || 'v14.16.0'
set :npm_version, File.exist?('.npm-version') && File.read('.npm-version').strip || '7.11.1'
set :nvm_map_bins, fetch(:nvm_map_bins, []).push('rake')
set :nvm_map_bins, fetch(:nvm_map_bins, []).push('bundle')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,6 @@
},
"license": "MIT",
"engines": {
"node": "12.22.1"
"node": "14.16.0"
}
}
2 changes: 1 addition & 1 deletion scripts/install_development.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ BUNDLER_VERSION=1.17.3

## NODEJS
NVM_VERSION='v0.38.0'
NODE_VERSION=12.22.1
NODE_VERSION=14.16.0
NPM_VERSION=7.11.1

APP_NAME=chemotion_ELN # used for naming directories and files
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_production.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BUNDLER_VERSION=1.17.3

## NODEJS
NVM_VERSION='v0.38.0'
NODE_VERSION=12.22.1
NODE_VERSION=14.16.0
NPM_VERSION=7.11.1

APP_NAME=chemotion_ELN # used for naming directories and files
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_production.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ BUNDLER_VERSION=1.17.3

## NODEJS
NVM_VERSION='v0.38.0'
NODE_VERSION=12.22.1
NODE_VERSION=14.16.0
NPM_VERSION=7.11.1

## default naming of directories and files
Expand Down

0 comments on commit 47d971b

Please sign in to comment.