We're using relative-deps in an npm application. It was working fine until v1.0.1 – as long as we made sure that yarn was globally installed. But starting with v1.0.2, it now tries and fails to build the relative dependency via npm: 'npm build' called with no arguments.
To my understanding, yarn run build, yarn build, and npm run build are valid while npm build is not; so I'd say run build should work in both cases.
Thanks for sharing this library btw, it works great for us! 👍
We're using
relative-deps
in an npm application. It was working fine until v1.0.1 – as long as we made sure that yarn was globally installed. But starting with v1.0.2, it now tries and fails to build the relative dependency via npm:'npm build' called with no arguments
.To my understanding,
yarn run build
,yarn build
, andnpm run build
are valid whilenpm build
is not; so I'd sayrun build
should work in both cases.Thanks for sharing this library btw, it works great for us! 👍