Replies: 1 comment 1 reply
-
Let's go with the quickest solution for now. If the only reason we would need this for now is When we get to generating actual business logic we will probably need the SDK and then we can make a decision on this. |
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
-
The Morphir-Elm Scala backend expects some precreated types in
Morphir.SDK
namespace to exist.The Scala SDK exists in morphir-jvm repo, which is cloned every time we run
npm run build
and copied toredistributable/
. Themorphir-elm gen
command has acopyRedistributables()
function which seems to then include this in the generated code.The TypeScript backend also needs an externally defined type:
Morphir.SDK.Char
, which doesn't correspond to any builtin TypeScript type. We can implement this, but how do we store and distribute this code? I see several options:npm build
Beta Was this translation helpful? Give feedback.
All reactions