Replies: 1 comment
-
Hi @rsoika, cd git/open-bpmn/open-bpmn.glsp-client/
yarn link @eclipse-glsp/client`
yarn install You can also check with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I try to test this Pullrequest against my own project and I want to give some feedback.
For this I need to build the
glsp-client/packages/client
and switch to versionI understand that
yarn link
should be my friend here. I also found this bash script and adapted it to my own project. But nothing is working :-(I will break down the problem to a very simple scenario.
I want to build my 'model module' which only has only the dependency to
"@eclipse-glsp/client": "2.1.0-next"
From the documentation of the
yarn link
command it should work the following way:next I call the link comando
OK - fine!
Now I switch into my model module and call the
yarn link
command againAs a result of this command the version 2.1.0-next is now part of my directory
./open-bpmn-model/@eclipse-glsp/client
this looks all prommessing so far. But now wen call
yarn install
in my model module:Why does yarn not use my existing local version?? Even yarn install --force` has no effect :-(
Beta Was this translation helpful? Give feedback.
All reactions