Remove vertical space between row of elements

0 votes
asked May 16, 2019 in Question / help by andresteve07 (120 points)

Hello.

How do I get rid of the vertical space between the artifacts inside the package?

Is there any way to force the package and the <<deployment spec>> to be in the same line to reduce the node size?

. . .
skinparam
nodesep 4
skinparam ranksep 2
skinparam linetype polyline

 

frame "name## Frontend" {
node "Dell PowerEdge T30" <<device>> as name##_front_serv{
node "SUSE Linux Ent 10" <<OS>> as name##_front_os{
node "Apache" <<web server>> as name##_front_ws{
artifact name##_front_specs <<deployment spec>> as "package.json
----

config1: String
config2: Int
config3: Float"

package name <<dist folder>> as name##_front_dist{
artifact index.html <<source>> as name##_front_index
artifact "main-[V].[H].js" <<source>> as name##_front_main
artifact "polyfill-[V].[H].bundle.js" <<source>> as name##_front_poly
artifact "runtime-[V].[H].bundle.js" <<source>> as name##_front_run
artifact "style.[H].bundle.css" <<source>> as name##_front_style
folder assets as name##_front_assets
}}}}}

With the connections it's even worse.

1 Answer

0 votes
answered May 18, 2019 by anonymous
...