Skip to content

Commit

Permalink
[BREAKING] Require Node.js version >= 14 (#190)
Browse files Browse the repository at this point in the history
increase requirement of node to version 14 because node 12 eol is soon (2022-04-30).
Update ubuntu images as well
  • Loading branch information
tobiasso85 committed Apr 1, 2022
1 parent af19a4f commit ecf0f5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The UI5 migration tool is node.js-based and performs source code replacements an
## Installation

### Requirements
- [Node.js](https://nodejs.org/) (**version 8.5 or higher** ⚠️)
- [Node.js](https://nodejs.org/) (**version 14 or higher** ⚠️)

The migration tool is currently available for early usage. It can be installed with npm.
```cli
Expand Down
13 changes: 2 additions & 11 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,11 @@ trigger:

strategy:
matrix:
linux_node_8:
imageName: 'ubuntu-18.04'
node_version: 8.x
linux_node_10:
imageName: 'ubuntu-18.04'
node_version: 10.x
linux_node_12:
imageName: 'ubuntu-18.04'
node_version: 12.x
linux_node_14:
imageName: 'ubuntu-18.04'
imageName: 'ubuntu-20.04'
node_version: 14.x
linux_node_latest:
imageName: 'ubuntu-18.04'
imageName: 'ubuntu-20.04'
node_version: 16.x
mac_node_latest:
imageName: 'macos-10.15'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"main": "index.js",
"engines": {
"node": ">=8.5"
"node": ">=14"
},
"scripts": {
"build": "rimraf js && tsc -p .",
Expand Down

0 comments on commit ecf0f5c

Please sign in to comment.