Can we add --no-relative-deps flag during npm install to skip using local dependency folder, and use artifactory to load the package in node module
We had need to test the package from artifactory quickly in local and cause we have this relative-deps used, it always refer the local package location and not from artifactory, which we do want to take precedence when we want, and can use --no-relative-deps flag for this.
Can we add
--no-relative-deps
flag during npm install to skip using local dependency folder, and use artifactory to load the package in node moduleWe had need to test the package from artifactory quickly in local and cause we have this relative-deps used, it always refer the local package location and not from artifactory, which we do want to take precedence when we want, and can use
--no-relative-deps
flag for this.