TEMAndroid 7995196cff
Fast fix for old version nodejs (#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 <fosterseth@users.noreply.github.com>
2025-05-16 20:09:02 +00:00
..
2024-08-22 13:48:56 -04:00
2022-03-14 13:19:57 -04:00
2023-02-01 14:59:38 -05:00
2024-08-22 13:48:56 -04:00

Instruction to build ui directly from this directory

Set src of the ui repo

Via GIT

export UI_GIT_REPO=https://<git repo>

or

export UI_GIT_REPO=git@<git repo>

optionally set branch (default is main)

export UI_GIT_BRANCH=main

NOTE: UI_LOCAL have higher precedence than UI_GIT_REPO, if UI_LOCAL is set, UI_GIT_REPO will be ignored.

export UI_LOCAL = /path/to/your/ui

Build

make ui

Rebuild

make -B ui

Clean

make clean/ui