Skip to content

Commit 10e0709

Browse files
update node version
1 parent 541f70b commit 10e0709

File tree

4 files changed

+129
-147
lines changed

4 files changed

+129
-147
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
node-version:
11-
- 12
11+
- 16
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up system

docs/developer_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Logging in to the SUI requires a running instance of ManageIQ. Instructions on h
1212
```
1313
git clone [email protected]:ManageIQ/manageiq-ui-service.git
1414
```
15-
- Have nodejs **v6.x** and npm **3.x.x** installed (npm should be installed with NodeJS)
15+
- Have nodejs **v16.x** and npm **8.x.x** installed (npm should be installed with NodeJS)
1616
- If using [nvm](https://github.com/creationix/nvm) you can ensure you are using the correct node version with `nvm use`
1717
- Have yarn (^v1.0.1) globally installed.
1818
```

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
"devDependencies": {
7878
"@babel/core": "~7.12.3",
7979
"@babel/preset-env": "~7.12.1",
80+
"@webpack-cli/serve": "~1.6.0",
8081
"angular-mocks": "~1.8.2",
8182
"axios": "~0.21.0",
8283
"babel-eslint": "~10.1.0",
@@ -116,15 +117,15 @@
116117
"resolve-url-loader": "~3.1.2",
117118
"sass": "~1.29.0",
118119
"sass-lint": "~1.13.1",
119-
"sass-loader": "~10.0.5",
120+
"sass-loader": "^11.1.1",
120121
"save-remote-file-webpack-plugin": "^1.1.0",
121122
"shelljs": "~0.8.4",
122123
"sinon": "~9.2.1",
123124
"sinon-chai": "~3.5.0",
124125
"style-loader": "~2.0.0",
125126
"url-loader": "~4.1.1",
126127
"webpack": "~5.4.0",
127-
"webpack-cli": "~4.2.0",
128+
"webpack-cli": "~4.9.0",
128129
"webpack-dev-server": "~3.11.0",
129130
"webpack-stats-plugin": "~1.0.2"
130131
},
@@ -133,8 +134,8 @@
133134
"> 5%"
134135
],
135136
"engines": {
136-
"node": ">= 12.0.0",
137-
"npm": ">= 6.0.0"
137+
"node": ">= 16.0.0",
138+
"npm": ">= 8.0.0"
138139
},
139140
"packageManager": "[email protected]"
140141
}

0 commit comments

Comments
 (0)