-
Huh? What's a "subsequent peer module"? I think maybe this is saying:
Is that right? (If so, it seems like really strange interface.)
https://skip.tools/docs/gettingstarted/ says:
I think it's something like, when there's an Does that mean it's impossible to init an app with one "app" module, one native module, and one transpiled module?
I don't see anything about this syntax in https://skip.tools/docs/gettingstarted/ or https://skip.tools/docs/skip-cli/.
There's no documented examples of adding colons to the modules to declare their dependencies. How does this work? (Are there other undocumented options like this?) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It just means that if you create
There's no
We will be documenting this is the next version of the Skip tool. |
Beta Was this translation helpful? Give feedback.
--id
is vestigial and unused. We've removed it from the docs, and the next version of theskip
tool will not include it.It just means that if you create
skip init project-name LibA LibB LibC
, thenLibA
will depend onLibB
andLibB
will depend onLibC
. This is usually what you want, but can be controlled by the--chain/--no-chain
parameter. And, of course, you can just modify thePackage.swift
to change the dependency setup.There's no
skip init
parameter that controls the nativeness o…