scancscode 1.0.1 → 1.0.3
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/LiteralCollector.js
CHANGED
|
@@ -102,11 +102,11 @@ class LiteralCollector {
|
|
|
102
102
|
this.scanTablesInFolder(gameConfigFolder, literals, verbose);
|
|
103
103
|
}
|
|
104
104
|
this.filterLiterals(literals);
|
|
105
|
+
console.log(literals);
|
|
106
|
+
await CSVUtils_1.CSVUtils.updateToFile(outCsvFile, literals, langs);
|
|
105
107
|
for (const unexpect of unexpects) {
|
|
106
108
|
console.error(unexpect);
|
|
107
109
|
}
|
|
108
|
-
console.log(literals);
|
|
109
|
-
await CSVUtils_1.CSVUtils.updateToFile(outCsvFile, literals, langs);
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
exports.LiteralCollector = LiteralCollector;
|
package/package.json
CHANGED
package/src/LiteralCollector.ts
CHANGED
|
@@ -79,10 +79,10 @@ export class LiteralCollector {
|
|
|
79
79
|
}
|
|
80
80
|
this.filterLiterals(literals);
|
|
81
81
|
|
|
82
|
+
console.log(literals);
|
|
83
|
+
await CSVUtils.updateToFile(outCsvFile, literals, langs);
|
|
82
84
|
for (const unexpect of unexpects) {
|
|
83
85
|
console.error(unexpect);
|
|
84
86
|
}
|
|
85
|
-
console.log(literals);
|
|
86
|
-
await CSVUtils.updateToFile(outCsvFile, literals, langs);
|
|
87
87
|
}
|
|
88
88
|
}
|