I have found in the documentation that I can configure my project to use yarn
instead of npm
. This would sort of fix my issue, since yarn install
is equivalent to npm ci
. Nonetheless, I would like to know if there is a way to tell ember to run npm ci
instead of npm install
Why would someone want to install different dependencies every time you deploy the same commit? I would also appreciate if someone knows why ember build
default to npm install
instead of npm ci
, maybe there is something for me to learn