poe-code 3.0.319 → 3.0.320
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
CHANGED
|
@@ -65614,7 +65614,12 @@ function mergeCliSettings(userSettings, requiredSettings) {
|
|
|
65614
65614
|
return merged;
|
|
65615
65615
|
}
|
|
65616
65616
|
function buildArgsWithMergedSettings(args, requiredSettings) {
|
|
65617
|
-
const { userSettings, argsWithoutSettings } = extractSettingsFromArgs(args);
|
|
65617
|
+
const { userSettings, settingsFilePath, argsWithoutSettings } = extractSettingsFromArgs(args);
|
|
65618
|
+
if (settingsFilePath) {
|
|
65619
|
+
throw new Error(
|
|
65620
|
+
`Cannot merge provider-required settings with --settings file path ${settingsFilePath}. Pass settings as inline JSON or remove --settings.`
|
|
65621
|
+
);
|
|
65622
|
+
}
|
|
65618
65623
|
const merged = mergeCliSettings(userSettings, requiredSettings);
|
|
65619
65624
|
return [...argsWithoutSettings, "--settings", JSON.stringify(merged)];
|
|
65620
65625
|
}
|
|
@@ -137836,7 +137841,7 @@ var init_package2 = __esm({
|
|
|
137836
137841
|
"package.json"() {
|
|
137837
137842
|
package_default2 = {
|
|
137838
137843
|
name: "poe-code",
|
|
137839
|
-
version: "3.0.
|
|
137844
|
+
version: "3.0.320",
|
|
137840
137845
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
137841
137846
|
type: "module",
|
|
137842
137847
|
main: "./dist/index.js",
|