Skip to content

Commit

Permalink
Upgrade to Node 10.16.2 and NPM 6.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgrimaud committed Aug 10, 2019
1 parent c9f4ca1 commit 62172f8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- docker
language: node_js
node_js:
- '10.16.1'
- '10.16.2'
addons:
apt:
sources:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN \
apt-get install -y openjdk-11-jdk && \
update-java-alternatives -s java-1.11.0-openjdk-amd64 && \
# install node.js
wget https://nodejs.org/dist/v10.16.1/node-v10.16.1-linux-x64.tar.gz -O /tmp/node.tar.gz && \
wget https://nodejs.org/dist/v10.16.2/node-v10.16.2-linux-x64.tar.gz -O /tmp/node.tar.gz && \
tar -C /usr/local --strip-components 1 -xzf /tmp/node.tar.gz && \
# upgrade npm
npm install -g npm && \
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
#----------------------------------------------------------------------
- task: NodeTool@0
inputs:
versionSpec: '10.16.1'
versionSpec: '10.16.2'
displayName: 'TOOLS: install Node.js'
- script: |
if [[ $JHI_JDK = '11' ]]; then
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ const KUBERNETES_RBAC_API_VERSION = 'rbac.authorization.k8s.io/v1';
const JAVA_VERSION = '1.8'; // Java version is forced to be 1.8. We keep the variable as it might be useful in the future.

// version of Node, Yarn, NPM
const NODE_VERSION = '10.16.1';
const NODE_VERSION = '10.16.2';
const YARN_VERSION = '1.17.3';
const NPM_VERSION = '6.9.2';
const NPM_VERSION = '6.10.2';

// Libraries version
const JIB_VERSION = '1.4.0';
Expand Down

0 comments on commit 62172f8

Please sign in to comment.