@orth/cli 0.2.17 → 0.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/skills.d.ts +1 -0
- package/dist/commands/skills.js +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare function skillsInitCommand(name: string | undefined, options: {
|
|
|
20
20
|
export declare function skillsSubmitCommand(inputPath: string | undefined, options: {
|
|
21
21
|
name?: string;
|
|
22
22
|
tags?: string;
|
|
23
|
+
org?: string;
|
|
23
24
|
}): Promise<void>;
|
|
24
25
|
export declare function skillsPushCommand(slug: string, inputPath: string | undefined, options: {
|
|
25
26
|
name?: string;
|
package/dist/commands/skills.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -174,6 +174,7 @@ skillsGroup
|
|
|
174
174
|
.description("Submit a local skill to the Orthogonal platform")
|
|
175
175
|
.option("-n, --name <name>", "Override skill name from frontmatter")
|
|
176
176
|
.option("-t, --tags <tags>", "Comma-separated tags")
|
|
177
|
+
.option("--org <orgId>", "Submit to an organization instead of personal account")
|
|
177
178
|
.action(asyncAction(async (inputPath, options) => {
|
|
178
179
|
(0, analytics_js_1.trackEvent)("skills.submit", { path: inputPath });
|
|
179
180
|
await (0, skills_js_1.skillsSubmitCommand)(inputPath, options);
|