scancscode 1.0.51 → 1.0.53
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
package/src/CmdExecutor.ts
CHANGED
|
@@ -149,8 +149,8 @@ export class CmdExecutor {
|
|
|
149
149
|
if (appId == null) {
|
|
150
150
|
console.error(`appId missing:`, argv);
|
|
151
151
|
return;
|
|
152
|
-
|
|
153
|
-
|
|
152
|
+
}
|
|
153
|
+
await CsvAutoTranslator.translateCsvWithLangs(appId, apiKey, incsv, outcsv, fromLang, toLangs);
|
|
154
154
|
console.log("translate csv with cmd options done.");
|
|
155
155
|
}
|
|
156
156
|
}
|
package/src/RunTranslateCSV.ts
CHANGED