Trying to install viv from a git branch #830
xinaesthete
started this conversation in
General
Replies: 1 comment 1 reply
-
Yes @xinaesthete I agree. The issue here is our monorepo. This seems to work for me (where the repo is built similar to yours, but without typescript): cd my_test_repo
npm install ../viv/packages/main which adds Sorry to put you through the ringer here, didn't remember we had this. Of course you're welcome to publish a dev version of the package. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As suggested by @ilan-gold here, I'm trying to install an experimental into another repository.
I'm working from a fresh
npm create vite@latest
, choosing framework React & variant Typescript.First, I manually added a whole load of deck.gl/luma.gl/math.gl dependencies; probably (hopefully) not all of these are necessary. At this point, I have a package.json looking something like
So, I first
npm i
with that, and thennpm i git+https://github.com/xinaesthete/viv.git#depbump
That yields
Switching to
pnpm
, it appears to install without error, and I have the following extra entry in `"dependencies""@vivjs/monorepo": "github:xinaesthete/viv#depbump"
Code that imports
from "@hms-dbmi/viv"
has an errorIf I change to
import ... from "@vivjs/monorepo"
it still says that it cannot find it.It's at about this point that I previously started to think maybe I'd experiment with publishing a different version of the module - but would prefer if we could get this to work.
Beta Was this translation helpful? Give feedback.
All reactions