Skip to content

Commit 7995196

Browse files
Fast fix for old version nodejs (ansible#15912)
* Fast fix for old version nodejs Fixing error required: { node: '^18.0.0 || >=20.0.0' }, current: { node: 'v16.13.1', npm: '8.5.0' } * Use node js 18 by default to align with official docs --------- Co-authored-by: Seth Foster <[email protected]>
1 parent eb96d5d commit 7995196

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

awx/ui/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ ui/src/webpack: $(UI_DIR)/src/node_modules/webpack
8787
## True target for ui/src/webpack.
8888
$(UI_DIR)/src/node_modules/webpack:
8989
@echo "=== Installing webpack ==="
90-
@cd $(UI_DIR)/src && npm install webpack
90+
@cd $(UI_DIR)/src && n 18 && npm install webpack
9191

9292
.PHONY: clean/ui
9393
## Clean ui

0 commit comments

Comments
 (0)