gtx-cli 1.2.10 → 1.2.11

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.
@@ -71,7 +71,8 @@ async function translateFiles(filePaths, placeholderPaths, transformPaths, dataF
71
71
  return;
72
72
  }
73
73
  if (options.dryRun) {
74
- (0, console_1.logSuccess)('Dry run: No files were sent to General Translation.');
74
+ const fileNames = allFiles.map((file) => `- ${file.fileName}`).join('\n');
75
+ (0, console_1.logSuccess)(`Dry run: No files were sent to General Translation. Found files:\n${fileNames}`);
75
76
  return;
76
77
  }
77
78
  // Validate required settings are present
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtx-cli",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "main": "dist/index.js",
5
5
  "bin": "dist/main.js",
6
6
  "scripts": {