@helloao/cli 0.0.16 → 0.0.18
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/esm/index.js +6 -0
- package/dist/esm/index.js.map +2 -2
- package/package.json +2 -2
- package/dist/cjs/cli.cjs +0 -16777
- package/dist/cjs/index.cjs +0 -16490
- package/dist/types/actions.d.ts +0 -240
- package/dist/types/cli.d.ts +0 -3
- package/dist/types/conversion.d.ts +0 -13
- package/dist/types/db.d.ts +0 -157
- package/dist/types/downloads.d.ts +0 -14
- package/dist/types/ebible.d.ts +0 -6
- package/dist/types/files.d.ts +0 -136
- package/dist/types/index.d.ts +0 -8
- package/dist/types/s3.d.ts +0 -44
- package/dist/types/uploads.d.ts +0 -96
package/dist/esm/index.js
CHANGED
|
@@ -7984,6 +7984,9 @@ async function uploadApiFilesFromDatabase(db, dest, options) {
|
|
|
7984
7984
|
if (options.pretty) {
|
|
7985
7985
|
logger.log("Generating pretty-printed JSON files");
|
|
7986
7986
|
}
|
|
7987
|
+
if (options.generateCompleteTranslationFiles) {
|
|
7988
|
+
logger.log("Generating complete translation files");
|
|
7989
|
+
}
|
|
7987
7990
|
const pageSize = typeof options.batchSize === "number" ? options.batchSize : parseInt(options.batchSize);
|
|
7988
7991
|
await serializeAndUploadDatasets(
|
|
7989
7992
|
dest,
|
|
@@ -8021,6 +8024,9 @@ async function serializeAndUploadDatasets(dest, datasets, options = {}) {
|
|
|
8021
8024
|
if (options.pretty) {
|
|
8022
8025
|
logger.log("Generating pretty-printed JSON files");
|
|
8023
8026
|
}
|
|
8027
|
+
if (options.generateCompleteTranslationFiles) {
|
|
8028
|
+
logger.log("Generating complete translation files");
|
|
8029
|
+
}
|
|
8024
8030
|
const files = serializeDatasets(datasets, {
|
|
8025
8031
|
...options
|
|
8026
8032
|
});
|