I’ve followed the yarn override instructions but found that when overriding I can’t just override the npm install
command, and have to override all inferred commands.
This prevents a few other inferred dependencies from running. For example, a normal inferred build looks as follows
Exporting NODE_ENV 00:02inference
Exporting PATH 00:02inference
$ npm install 03:49inference
composer install
And a build with
dependencies:
override:
- yarn
The inferred dependencies look as follows
$ yarn
Obviously I’m now missing some commands. I could add them, but I can’t find documentation on what they’re doing, and also this means that any other automatically inferred commands won’t be added.
Is there a way I can prevent npm running automatically but leave the other inferred dependencies running?
In the mean time, what exact commands would the following titled processes be running?
// Presumably export NODE_ENV=ci
Exporting NODE_ENV 00:02inference
// Unknown
Exporting PATH 00:02inference
Thanks