We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdc211f commit c64f361Copy full SHA for c64f361
plugins/plugin-tools/src/config.ts
@@ -86,6 +86,10 @@ export const orbiterId = async (args: ConfigArgs): Promise<string | undefined> =
86
return undefined;
87
}
88
89
+ return await junoConfigOrbiterId(args);
90
+};
91
+
92
+const junoConfigOrbiterId = async (args: ConfigArgs): Promise<string | undefined> => {
93
await assertJunoConfig();
94
95
const config = await readJunoConfig(args);
0 commit comments