poe-code 3.0.143 → 3.0.144
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/index.js +4 -4
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15099,7 +15099,7 @@ var init_commands = __esm({
|
|
|
15099
15099
|
handler: async ({ params }) => {
|
|
15100
15100
|
const name = params.name;
|
|
15101
15101
|
const isEject = params.eject === true;
|
|
15102
|
-
const variant = "ejected";
|
|
15102
|
+
const variant = isEject ? "ejected" : "caller";
|
|
15103
15103
|
const cwd = resolveCwd();
|
|
15104
15104
|
const localAutomationName = isEject ? `poe-code-${name}` : name;
|
|
15105
15105
|
const promptPath = isEject ? path28.join(projectWorkflowDir(cwd), `${localAutomationName}.md`) : void 0;
|
|
@@ -20470,7 +20470,7 @@ function resolveHelpOutput(argv) {
|
|
|
20470
20470
|
}
|
|
20471
20471
|
}
|
|
20472
20472
|
}
|
|
20473
|
-
return
|
|
20473
|
+
return "rich";
|
|
20474
20474
|
}
|
|
20475
20475
|
function isNodeVisibleInScope(node, scope) {
|
|
20476
20476
|
if (node.kind === "command") {
|
|
@@ -20808,7 +20808,7 @@ function resolveOutput(globalFlags) {
|
|
|
20808
20808
|
if (globalFlags.output !== void 0) {
|
|
20809
20809
|
return globalFlags.output;
|
|
20810
20810
|
}
|
|
20811
|
-
return
|
|
20811
|
+
return "rich";
|
|
20812
20812
|
}
|
|
20813
20813
|
function toDesignSystemOutput(output) {
|
|
20814
20814
|
if (output === "md") {
|
|
@@ -28125,7 +28125,7 @@ var init_package = __esm({
|
|
|
28125
28125
|
"package.json"() {
|
|
28126
28126
|
package_default = {
|
|
28127
28127
|
name: "poe-code",
|
|
28128
|
-
version: "3.0.
|
|
28128
|
+
version: "3.0.144",
|
|
28129
28129
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
28130
28130
|
type: "module",
|
|
28131
28131
|
main: "./dist/index.js",
|