@synchronized-studio/cmsassets-agent 0.1.1 → 0.1.2
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/cli.js +4 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -282,6 +282,9 @@ var initCommand = defineCommand({
|
|
|
282
282
|
if (scriptAdded) {
|
|
283
283
|
consola2.log(` ${pc.dim("Re-run later with:")} ${pc.cyan("npm run cmsassets:transform")}`);
|
|
284
284
|
}
|
|
285
|
+
if (!args["ai-verify"] && applied.length > 0) {
|
|
286
|
+
consola2.log(` ${pc.dim("Optional:")} Add ${pc.cyan("--ai-verify")} to have AI review patched files (requires OPENAI_API_KEY).`);
|
|
287
|
+
}
|
|
285
288
|
consola2.log("");
|
|
286
289
|
}
|
|
287
290
|
});
|
|
@@ -971,7 +974,7 @@ var rollbackCommand = defineCommand7({
|
|
|
971
974
|
var main = defineCommand8({
|
|
972
975
|
meta: {
|
|
973
976
|
name: "cmsassets-agent",
|
|
974
|
-
version: "0.1.
|
|
977
|
+
version: "0.1.2",
|
|
975
978
|
description: "Auto-integrate @synchronized-studio/response-transformer into any JS/TS project."
|
|
976
979
|
},
|
|
977
980
|
subCommands: {
|
package/package.json
CHANGED