You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As title says, this feature can import specified node in importing file to my config file via @import. Specific node will be defined after filename in node import definition separated with :$. Feature allows import node by path definition. Paths has delimiter .
User can specify target node by path. Importing nodes concats with base, see #115
Exapmle:
"@imports":
mynode: "config/myconf.yaml:$my.node"# imports node my/node from myconf.yaml to mynode in base"mynode.sub": "config/myconf2.yaml"# imports whole myconf2.yaml to subnode mynode/sub in base"mynode.sub2": "config/myconf3.yaml:$foo"# imports node foo from myconf3.yaml to subnode mynode/sub2 in baseclassic: "config/classic.yaml"# imports whole classic.yaml to node classic in base (implemented yet)