Tal Sofer
04/18/2022, 12:57 PMnpm install
to build the UI after a new node module is added?
I mean, looking at the Makefile I expect the following to happen on make build
-
make build -> gen > gen-ui -> ui-build -> $(UI_DIR)/node_modules (that does npm install)Barak Amar
npm
package install from the default build step as it is a very long process.
A new build machine will not have a node_module and we condition that in the makefile to install npm packages.
We can add it to the clean step so an incremental build will not install it and a fresh clean will work for you?Niro
04/19/2022, 3:07 PMBarak Amar
Tal Sofer
04/19/2022, 3:09 PMWe can add it to the clean step so an incremental build will not install it and a fresh clean will work for you?That makes sense, thanks for the explanation!
Niro
04/19/2022, 3:10 PMTal Sofer
04/19/2022, 3:10 PMNiro
04/19/2022, 3:11 PM