localingos 0.1.20 → 0.1.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "localingos",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "CLI tool to sync translations with Localingos",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -12,7 +12,6 @@ export async function syncCommand(options) {
12
12
  const formatter = getFormatter(config.format);
13
13
 
14
14
  // 0. Run i18n:extract to sync .messages.ts → source locale JSON
15
- const sourceFilePath = path.resolve(config.sourceFile);
16
15
  const extractScript = path.resolve('scripts/extract-messages.js');
17
16
  if (fs.existsSync(extractScript)) {
18
17
  console.log(chalk.blue('🔄 Running i18n:extract to sync message definitions...'));