@enplug/scripts 1.11.4-dev63 → 1.11.4-dev65
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.
|
@@ -253,7 +253,6 @@ function readFakeTranslationsFile(url) {
|
|
|
253
253
|
return axios.get(url);
|
|
254
254
|
}
|
|
255
255
|
|
|
256
|
-
|
|
257
256
|
function promptAddFile(crowdinPath) {
|
|
258
257
|
const prompt = inquirer.createPromptModule();
|
|
259
258
|
|
|
@@ -264,4 +263,4 @@ function promptAddFile(crowdinPath) {
|
|
|
264
263
|
}));
|
|
265
264
|
}
|
|
266
265
|
|
|
267
|
-
module.exports = { getCrowdinCredentials, getCrowdinConfig, findCrowdinAppDirectoryId, findCrowdinAppSubFolderId, getFileIdIfExists, uploadFileToCrowdinStorage, updateCrowdinFile, addCrowdinFile, uploadFileToCrowdin, fetchFileFromCrowdin };
|
|
266
|
+
module.exports = { getCrowdinCredentials, getCrowdinConfig, findCrowdinAppDirectoryId, findCrowdinAppSubFolderId, getFileIdIfExists, uploadFileToCrowdinStorage, updateCrowdinFile, addCrowdinFile, uploadFileToCrowdin, fetchFileFromCrowdin, readFakeTranslationsFile };
|
|
@@ -5,7 +5,7 @@ const inquirer = require('inquirer');
|
|
|
5
5
|
const fs = require('fs');
|
|
6
6
|
const path = require('path');
|
|
7
7
|
|
|
8
|
-
const { getCrowdinCredentials, getCrowdinConfig, findCrowdinAppDirectoryId, findCrowdinAppSubFolderId, getFileIdIfExists, uploadFileToCrowdinStorage, updateCrowdinFile, addCrowdinFile, uploadFileToCrowdin, fetchFileFromCrowdin } = require('./crowdin');
|
|
8
|
+
const { getCrowdinCredentials, getCrowdinConfig, findCrowdinAppDirectoryId, findCrowdinAppSubFolderId, getFileIdIfExists, uploadFileToCrowdinStorage, updateCrowdinFile, addCrowdinFile, uploadFileToCrowdin, fetchFileFromCrowdin, readFakeTranslationsFile } = require('./crowdin');
|
|
9
9
|
const { checkKeys, validateTranslationFile } = require('./transloco');
|
|
10
10
|
const { uploadTranslationToS3 } = require('./translation-s3');
|
|
11
11
|
const getPackageJson = require('../getPackageJson');
|
|
@@ -133,9 +133,9 @@ async function updateFrakeTranslations(credentials, fileId, s3EnPath) {
|
|
|
133
133
|
const s3FakeTranslationPath = path.join(s3TranslationsPath, FAKE_IN_CONTEXT_LANGUAGE_FILE);
|
|
134
134
|
console.log('s3FakeTranslationPath', s3FakeTranslationPath);
|
|
135
135
|
const fakeTranslation = await readFakeTranslationsFile(fakeTranslationUrl.data.url);
|
|
136
|
-
console.log('
|
|
136
|
+
console.log('fakeTranslation', fakeTranslation.data);
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
await uploadTranslationToS3(s3Client, bucket, s3FakeTranslationPath, JSON.stringify(fakeTranslation));
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
async function promptForceContinue() {
|