I am using Yarn. I have a project that needs the latest developments of the deck.gl project (i.e. something that has not yet released). I tried:
1- To clone the repo, build it and publish the different modules in a registries but I (legitimately) do not own the @deck.gl scope - so it seems that route is not possible.
2- To clone the repo, build it and then add the various module directories to my project using:
yarn add file:/Users/alleon_g/0x-TechWork/deck.gl/modules/core/
but that seems to create issues with dependencies of that module
yarn add v1.13.0
[1/4] Resolving packages...
error Couldn't find package "luma.gl@^7.0.0-alpha.14" required by "file:/Users/alleon_g/0x-TechWork/deck.gl/modules/core/" on the "npm" registry.
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
What is the proper way of using the latest modules of a project that has not yet published its components?
Guillaume