@intlayer/chokidar 5.5.1 → 5.5.2
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/cjs/index.cjs +10 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/transpiler/dictionary_to_main/createDictionaryEntryPoint.cjs +5 -37
- package/dist/cjs/transpiler/dictionary_to_main/createDictionaryEntryPoint.cjs.map +1 -1
- package/dist/cjs/transpiler/dictionary_to_main/generateDictionaryListContent.cjs +63 -0
- package/dist/cjs/transpiler/dictionary_to_main/generateDictionaryListContent.cjs.map +1 -0
- package/dist/cjs/transpiler/dictionary_to_main/index.cjs +3 -1
- package/dist/cjs/transpiler/dictionary_to_main/index.cjs.map +1 -1
- package/dist/esm/index.mjs +9 -1
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/transpiler/dictionary_to_main/createDictionaryEntryPoint.mjs +2 -34
- package/dist/esm/transpiler/dictionary_to_main/createDictionaryEntryPoint.mjs.map +1 -1
- package/dist/esm/transpiler/dictionary_to_main/generateDictionaryListContent.mjs +39 -0
- package/dist/esm/transpiler/dictionary_to_main/generateDictionaryListContent.mjs.map +1 -0
- package/dist/esm/transpiler/dictionary_to_main/index.mjs +1 -0
- package/dist/esm/transpiler/dictionary_to_main/index.mjs.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/transpiler/dictionary_to_main/createDictionaryEntryPoint.d.ts.map +1 -1
- package/dist/types/transpiler/dictionary_to_main/generateDictionaryListContent.d.ts +5 -0
- package/dist/types/transpiler/dictionary_to_main/generateDictionaryListContent.d.ts.map +1 -0
- package/dist/types/transpiler/dictionary_to_main/index.d.ts +1 -0
- package/dist/types/transpiler/dictionary_to_main/index.d.ts.map +1 -1
- package/package.json +13 -13
package/dist/cjs/index.cjs
CHANGED
|
@@ -21,11 +21,14 @@ __export(index_exports, {
|
|
|
21
21
|
buildAndWatchIntlayer: () => import_watcher.buildAndWatchIntlayer,
|
|
22
22
|
buildDictionary: () => import_declaration_file_to_dictionary.buildDictionary,
|
|
23
23
|
checkDictionaryChanges: () => import_checkDictionaryChanges.checkDictionaryChanges,
|
|
24
|
-
createDictionaryEntryPoint: () =>
|
|
24
|
+
createDictionaryEntryPoint: () => import_dictionary_to_main.createDictionaryEntryPoint,
|
|
25
25
|
createModuleAugmentation: () => import_createModuleAugmentation.createModuleAugmentation,
|
|
26
26
|
fetchDistantDictionaries: () => import_fetchDistantDictionaries.fetchDistantDictionaries,
|
|
27
27
|
fetchDistantDictionaryKeys: () => import_fetchDistantDictionaryKeys.fetchDistantDictionaryKeys,
|
|
28
28
|
filterDictionaryLocales: () => import_filterDictionaryLocales.filterDictionaryLocales,
|
|
29
|
+
generateDictionaryListContent: () => import_dictionary_to_main.generateDictionaryListContent,
|
|
30
|
+
getBuiltDictionariesPath: () => import_getBuiltDictionariesPath.getBuiltDictionariesPath,
|
|
31
|
+
getBuiltUnmergedDictionariesPath: () => import_getBuiltUnmergedDictionariesPath.getBuiltUnmergedDictionariesPath,
|
|
29
32
|
handleAdditionalContentDeclarationFile: () => import_watcher.handleAdditionalContentDeclarationFile,
|
|
30
33
|
handleContentDeclarationFileChange: () => import_watcher.handleContentDeclarationFileChange,
|
|
31
34
|
listDictionaries: () => import_listDictionariesPath.listDictionaries,
|
|
@@ -47,6 +50,8 @@ var import_watcher = require('./chokidar/watcher.cjs');
|
|
|
47
50
|
var import_fetchDistantDictionaries = require('./fetchDistantDictionaries.cjs');
|
|
48
51
|
var import_fetchDistantDictionaryKeys = require('./fetchDistantDictionaryKeys.cjs');
|
|
49
52
|
var import_filterDictionaryLocales = require('./filterDictionaryLocales.cjs');
|
|
53
|
+
var import_getBuiltDictionariesPath = require('./getBuiltDictionariesPath.cjs');
|
|
54
|
+
var import_getBuiltUnmergedDictionariesPath = require('./getBuiltUnmergedDictionariesPath.cjs');
|
|
50
55
|
var import_listDictionariesPath = require('./listDictionariesPath.cjs');
|
|
51
56
|
var import_listGitFiles = require('./listGitFiles.cjs');
|
|
52
57
|
var import_loadDictionaries = require('./loadDictionaries/index.cjs');
|
|
@@ -56,7 +61,7 @@ var import_prepareIntlayer = require('./prepareIntlayer.cjs');
|
|
|
56
61
|
var import_processPerLocaleDictionary = require('./processPerLocaleDictionary.cjs');
|
|
57
62
|
var import_reduceDictionaryContent = require('./reduceDictionaryContent/reduceDictionaryContent.cjs');
|
|
58
63
|
var import_declaration_file_to_dictionary = require('./transpiler/declaration_file_to_dictionary/index.cjs');
|
|
59
|
-
var
|
|
64
|
+
var import_dictionary_to_main = require('./transpiler/dictionary_to_main/index.cjs');
|
|
60
65
|
var import_createModuleAugmentation = require('./transpiler/dictionary_to_type/createModuleAugmentation.cjs');
|
|
61
66
|
var import_writeContentDeclaration = require('./writeContentDeclaration/index.cjs');
|
|
62
67
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -69,6 +74,9 @@ var import_writeContentDeclaration = require('./writeContentDeclaration/index.cj
|
|
|
69
74
|
fetchDistantDictionaries,
|
|
70
75
|
fetchDistantDictionaryKeys,
|
|
71
76
|
filterDictionaryLocales,
|
|
77
|
+
generateDictionaryListContent,
|
|
78
|
+
getBuiltDictionariesPath,
|
|
79
|
+
getBuiltUnmergedDictionariesPath,
|
|
72
80
|
handleAdditionalContentDeclarationFile,
|
|
73
81
|
handleContentDeclarationFileChange,
|
|
74
82
|
listDictionaries,
|
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export { checkDictionaryChanges } from './checkDictionaryChanges';\nexport {\n buildAndWatchIntlayer,\n handleAdditionalContentDeclarationFile,\n handleContentDeclarationFileChange,\n watch,\n} from './chokidar/watcher';\nexport { fetchDistantDictionaries } from './fetchDistantDictionaries';\nexport { fetchDistantDictionaryKeys } from './fetchDistantDictionaryKeys';\nexport { filterDictionaryLocales } from './filterDictionaryLocales';\nexport { listDictionaries } from './listDictionariesPath';\nexport {\n listGitFiles,\n type DiffMode,\n type ListGitFilesOptions,\n} from './listGitFiles';\nexport {\n loadDictionaries,\n loadDistantDictionaries,\n loadLocalDictionaries,\n} from './loadDictionaries/index';\nexport { mergeDictionaries } from './mergeDictionaries';\nexport { prepareContentDeclaration } from './prepareContentDeclaration';\nexport { prepareIntlayer } from './prepareIntlayer';\nexport { processPerLocaleDictionary } from './processPerLocaleDictionary';\nexport { reduceDictionaryContent } from './reduceDictionaryContent/reduceDictionaryContent';\nexport { buildDictionary } from './transpiler/declaration_file_to_dictionary/index';\nexport {
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export { checkDictionaryChanges } from './checkDictionaryChanges';\nexport {\n buildAndWatchIntlayer,\n handleAdditionalContentDeclarationFile,\n handleContentDeclarationFileChange,\n watch,\n} from './chokidar/watcher';\nexport { fetchDistantDictionaries } from './fetchDistantDictionaries';\nexport { fetchDistantDictionaryKeys } from './fetchDistantDictionaryKeys';\nexport { filterDictionaryLocales } from './filterDictionaryLocales';\nexport { getBuiltDictionariesPath } from './getBuiltDictionariesPath';\nexport { getBuiltUnmergedDictionariesPath } from './getBuiltUnmergedDictionariesPath';\nexport { listDictionaries } from './listDictionariesPath';\nexport {\n listGitFiles,\n type DiffMode,\n type ListGitFilesOptions,\n} from './listGitFiles';\nexport {\n loadDictionaries,\n loadDistantDictionaries,\n loadLocalDictionaries,\n} from './loadDictionaries/index';\nexport { mergeDictionaries } from './mergeDictionaries';\nexport { prepareContentDeclaration } from './prepareContentDeclaration';\nexport { prepareIntlayer } from './prepareIntlayer';\nexport { processPerLocaleDictionary } from './processPerLocaleDictionary';\nexport { reduceDictionaryContent } from './reduceDictionaryContent/reduceDictionaryContent';\nexport { buildDictionary } from './transpiler/declaration_file_to_dictionary/index';\nexport {\n createDictionaryEntryPoint,\n generateDictionaryListContent,\n} from './transpiler/dictionary_to_main';\nexport { createModuleAugmentation } from './transpiler/dictionary_to_type/createModuleAugmentation';\nexport {\n writeContentDeclaration,\n type DictionaryStatus,\n} from './writeContentDeclaration';\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oCAAuC;AACvC,qBAKO;AACP,sCAAyC;AACzC,wCAA2C;AAC3C,qCAAwC;AACxC,sCAAyC;AACzC,8CAAiD;AACjD,kCAAiC;AACjC,0BAIO;AACP,8BAIO;AACP,+BAAkC;AAClC,uCAA0C;AAC1C,6BAAgC;AAChC,wCAA2C;AAC3C,qCAAwC;AACxC,4CAAgC;AAChC,gCAGO;AACP,sCAAyC;AACzC,qCAGO;","names":[]}
|
|
@@ -26,39 +26,7 @@ var import_fs = require("fs");
|
|
|
26
26
|
var import_path = require("path");
|
|
27
27
|
var import_getBuiltDictionariesPath = require('../../getBuiltDictionariesPath.cjs');
|
|
28
28
|
var import_getBuiltUnmergedDictionariesPath = require('../../getBuiltUnmergedDictionariesPath.cjs');
|
|
29
|
-
var
|
|
30
|
-
const generateDictionaryListContent = (dictionaries, format = "esm", configuration = (0, import_config.getConfiguration)()) => {
|
|
31
|
-
const { mainDir } = configuration.content;
|
|
32
|
-
let content = "";
|
|
33
|
-
const dictionariesRef = dictionaries.map((dictionaryPath) => ({
|
|
34
|
-
relativePath: (0, import_path.relative)(mainDir, dictionaryPath),
|
|
35
|
-
id: (0, import_path.basename)(dictionaryPath, (0, import_path.extname)(dictionaryPath)),
|
|
36
|
-
// Get the base name as the dictionary id
|
|
37
|
-
hash: `_${(0, import_utils.getFileHash)(dictionaryPath)}`
|
|
38
|
-
// Get the hash of the dictionary to avoid conflicts
|
|
39
|
-
}));
|
|
40
|
-
dictionariesRef.forEach((dictionary) => {
|
|
41
|
-
if (format === "esm")
|
|
42
|
-
content += `import ${dictionary.hash} from '${dictionary.relativePath}';
|
|
43
|
-
`;
|
|
44
|
-
if (format === "cjs")
|
|
45
|
-
content += `const ${dictionary.hash} = require('${dictionary.relativePath}');
|
|
46
|
-
`;
|
|
47
|
-
});
|
|
48
|
-
content += "\n";
|
|
49
|
-
const formattedDictionaryMap = dictionariesRef.map((dictionary) => ` "${dictionary.id}": ${dictionary.hash}`).join(",\n");
|
|
50
|
-
if (format === "esm")
|
|
51
|
-
content += `export default {
|
|
52
|
-
${formattedDictionaryMap}
|
|
53
|
-
};
|
|
54
|
-
`;
|
|
55
|
-
if (format === "cjs")
|
|
56
|
-
content += `module.exports = {
|
|
57
|
-
${formattedDictionaryMap}
|
|
58
|
-
};
|
|
59
|
-
`;
|
|
60
|
-
return content;
|
|
61
|
-
};
|
|
29
|
+
var import_generateDictionaryListContent = require('./generateDictionaryListContent.cjs');
|
|
62
30
|
const createDictionaryEntryPoint = (configuration = (0, import_config.getConfiguration)(), dictionariesKeys) => {
|
|
63
31
|
const { mainDir } = configuration.content;
|
|
64
32
|
if (!(0, import_fs.existsSync)(mainDir)) {
|
|
@@ -70,20 +38,20 @@ const createDictionaryEntryPoint = (configuration = (0, import_config.getConfigu
|
|
|
70
38
|
(dictionaryPath) => dictionariesKeys.some((key) => dictionaryPath.endsWith(`${key}.json`))
|
|
71
39
|
);
|
|
72
40
|
}
|
|
73
|
-
const cjsContent = generateDictionaryListContent(
|
|
41
|
+
const cjsContent = (0, import_generateDictionaryListContent.generateDictionaryListContent)(
|
|
74
42
|
dictionariesPath,
|
|
75
43
|
"cjs",
|
|
76
44
|
configuration
|
|
77
45
|
);
|
|
78
46
|
(0, import_fs.writeFileSync)((0, import_path.resolve)(mainDir, "dictionaries.cjs"), cjsContent);
|
|
79
|
-
const esmContent = generateDictionaryListContent(
|
|
47
|
+
const esmContent = (0, import_generateDictionaryListContent.generateDictionaryListContent)(
|
|
80
48
|
dictionariesPath,
|
|
81
49
|
"esm",
|
|
82
50
|
configuration
|
|
83
51
|
);
|
|
84
52
|
(0, import_fs.writeFileSync)((0, import_path.resolve)(mainDir, "dictionaries.mjs"), esmContent);
|
|
85
53
|
const unmergedDictionariesPath = (0, import_getBuiltUnmergedDictionariesPath.getBuiltUnmergedDictionariesPath)(configuration);
|
|
86
|
-
const unmergedCjsContent = generateDictionaryListContent(
|
|
54
|
+
const unmergedCjsContent = (0, import_generateDictionaryListContent.generateDictionaryListContent)(
|
|
87
55
|
unmergedDictionariesPath,
|
|
88
56
|
"cjs",
|
|
89
57
|
configuration
|
|
@@ -92,7 +60,7 @@ const createDictionaryEntryPoint = (configuration = (0, import_config.getConfigu
|
|
|
92
60
|
(0, import_path.resolve)(mainDir, "unmerged_dictionaries.cjs"),
|
|
93
61
|
unmergedCjsContent
|
|
94
62
|
);
|
|
95
|
-
const unmergedEsmContent = generateDictionaryListContent(
|
|
63
|
+
const unmergedEsmContent = (0, import_generateDictionaryListContent.generateDictionaryListContent)(
|
|
96
64
|
unmergedDictionariesPath,
|
|
97
65
|
"esm",
|
|
98
66
|
configuration
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/createDictionaryEntryPoint.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config';\nimport { existsSync, mkdirSync, writeFileSync } from 'fs';\nimport {
|
|
1
|
+
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/createDictionaryEntryPoint.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config';\nimport { existsSync, mkdirSync, writeFileSync } from 'fs';\nimport { resolve } from 'path';\nimport { getBuiltDictionariesPath } from '../../getBuiltDictionariesPath';\nimport { getBuiltUnmergedDictionariesPath } from '../../getBuiltUnmergedDictionariesPath';\nimport { generateDictionaryListContent } from './generateDictionaryListContent';\n\n/**\n * This function generates a list of dictionaries in the main directory\n */\nexport const createDictionaryEntryPoint = (\n configuration = getConfiguration(),\n dictionariesKeys?: string[]\n) => {\n const { mainDir } = configuration.content;\n\n // Create main directory if it doesn't exist\n if (!existsSync(mainDir)) {\n mkdirSync(mainDir, { recursive: true });\n }\n\n let dictionariesPath: string[] = getBuiltDictionariesPath(configuration);\n\n if (dictionariesKeys) {\n dictionariesPath = dictionariesPath.filter((dictionaryPath) =>\n dictionariesKeys.some((key) => dictionaryPath.endsWith(`${key}.json`))\n );\n }\n\n // Create the dictionary list file\n const cjsContent = generateDictionaryListContent(\n dictionariesPath,\n 'cjs',\n configuration\n );\n writeFileSync(resolve(mainDir, 'dictionaries.cjs'), cjsContent);\n\n const esmContent = generateDictionaryListContent(\n dictionariesPath,\n 'esm',\n configuration\n );\n writeFileSync(resolve(mainDir, 'dictionaries.mjs'), esmContent);\n\n const unmergedDictionariesPath: string[] =\n getBuiltUnmergedDictionariesPath(configuration);\n\n const unmergedCjsContent = generateDictionaryListContent(\n unmergedDictionariesPath,\n 'cjs',\n configuration\n );\n writeFileSync(\n resolve(mainDir, 'unmerged_dictionaries.cjs'),\n unmergedCjsContent\n );\n\n const unmergedEsmContent = generateDictionaryListContent(\n unmergedDictionariesPath,\n 'esm',\n configuration\n );\n writeFileSync(\n resolve(mainDir, 'unmerged_dictionaries.mjs'),\n unmergedEsmContent\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAAiC;AACjC,gBAAqD;AACrD,kBAAwB;AACxB,sCAAyC;AACzC,8CAAiD;AACjD,2CAA8C;AAKvC,MAAM,6BAA6B,CACxC,oBAAgB,gCAAiB,GACjC,qBACG;AACH,QAAM,EAAE,QAAQ,IAAI,cAAc;AAGlC,MAAI,KAAC,sBAAW,OAAO,GAAG;AACxB,6BAAU,SAAS,EAAE,WAAW,KAAK,CAAC;AAAA,EACxC;AAEA,MAAI,uBAA6B,0DAAyB,aAAa;AAEvE,MAAI,kBAAkB;AACpB,uBAAmB,iBAAiB;AAAA,MAAO,CAAC,mBAC1C,iBAAiB,KAAK,CAAC,QAAQ,eAAe,SAAS,GAAG,GAAG,OAAO,CAAC;AAAA,IACvE;AAAA,EACF;AAGA,QAAM,iBAAa;AAAA,IACjB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA,mCAAc,qBAAQ,SAAS,kBAAkB,GAAG,UAAU;AAE9D,QAAM,iBAAa;AAAA,IACjB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA,mCAAc,qBAAQ,SAAS,kBAAkB,GAAG,UAAU;AAE9D,QAAM,+BACJ,0EAAiC,aAAa;AAEhD,QAAM,yBAAqB;AAAA,IACzB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA;AAAA,QACE,qBAAQ,SAAS,2BAA2B;AAAA,IAC5C;AAAA,EACF;AAEA,QAAM,yBAAqB;AAAA,IACzB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA;AAAA,QACE,qBAAQ,SAAS,2BAA2B;AAAA,IAC5C;AAAA,EACF;AACF;","names":[]}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var generateDictionaryListContent_exports = {};
|
|
20
|
+
__export(generateDictionaryListContent_exports, {
|
|
21
|
+
generateDictionaryListContent: () => generateDictionaryListContent
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(generateDictionaryListContent_exports);
|
|
24
|
+
var import_config = require("@intlayer/config");
|
|
25
|
+
var import_path = require("path");
|
|
26
|
+
var import_utils = require('../../utils.cjs');
|
|
27
|
+
const generateDictionaryListContent = (dictionaries, format = "esm", configuration = (0, import_config.getConfiguration)()) => {
|
|
28
|
+
const { mainDir } = configuration.content;
|
|
29
|
+
let content = "";
|
|
30
|
+
const dictionariesRef = dictionaries.map((dictionaryPath) => ({
|
|
31
|
+
relativePath: (0, import_path.relative)(mainDir, dictionaryPath),
|
|
32
|
+
id: (0, import_path.basename)(dictionaryPath, (0, import_path.extname)(dictionaryPath)),
|
|
33
|
+
// Get the base name as the dictionary id
|
|
34
|
+
hash: `_${(0, import_utils.getFileHash)(dictionaryPath)}`
|
|
35
|
+
// Get the hash of the dictionary to avoid conflicts
|
|
36
|
+
}));
|
|
37
|
+
dictionariesRef.forEach((dictionary) => {
|
|
38
|
+
if (format === "esm")
|
|
39
|
+
content += `import ${dictionary.hash} from '${dictionary.relativePath}';
|
|
40
|
+
`;
|
|
41
|
+
if (format === "cjs")
|
|
42
|
+
content += `const ${dictionary.hash} = require('${dictionary.relativePath}');
|
|
43
|
+
`;
|
|
44
|
+
});
|
|
45
|
+
content += "\n";
|
|
46
|
+
const formattedDictionaryMap = dictionariesRef.map((dictionary) => ` "${dictionary.id}": ${dictionary.hash}`).join(",\n");
|
|
47
|
+
if (format === "esm")
|
|
48
|
+
content += `export default {
|
|
49
|
+
${formattedDictionaryMap}
|
|
50
|
+
};
|
|
51
|
+
`;
|
|
52
|
+
if (format === "cjs")
|
|
53
|
+
content += `module.exports = {
|
|
54
|
+
${formattedDictionaryMap}
|
|
55
|
+
};
|
|
56
|
+
`;
|
|
57
|
+
return content;
|
|
58
|
+
};
|
|
59
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
60
|
+
0 && (module.exports = {
|
|
61
|
+
generateDictionaryListContent
|
|
62
|
+
});
|
|
63
|
+
//# sourceMappingURL=generateDictionaryListContent.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/generateDictionaryListContent.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config';\nimport { basename, extname, relative } from 'path';\nimport { getFileHash } from '../../utils';\n\n/**\n * This function generates the content of the dictionary list file\n */\nexport const generateDictionaryListContent = (\n dictionaries: string[],\n format: 'cjs' | 'esm' = 'esm',\n configuration = getConfiguration()\n): string => {\n const { mainDir } = configuration.content;\n\n let content = '';\n\n const dictionariesRef = dictionaries.map((dictionaryPath) => ({\n relativePath: relative(mainDir, dictionaryPath),\n id: basename(dictionaryPath, extname(dictionaryPath)), // Get the base name as the dictionary id\n hash: `_${getFileHash(dictionaryPath)}`, // Get the hash of the dictionary to avoid conflicts\n }));\n\n // Import all dictionaries\n dictionariesRef.forEach((dictionary) => {\n if (format === 'esm')\n content += `import ${dictionary.hash} from '${dictionary.relativePath}';\\n`;\n if (format === 'cjs')\n content += `const ${dictionary.hash} = require('${dictionary.relativePath}');\\n`;\n });\n\n content += '\\n';\n\n // Format Dictionary Map\n const formattedDictionaryMap: string = dictionariesRef\n .map((dictionary) => ` \"${dictionary.id}\": ${dictionary.hash}`)\n .join(',\\n');\n\n if (format === 'esm')\n content += `export default {\\n${formattedDictionaryMap}\\n};\\n`;\n if (format === 'cjs')\n content += `module.exports = {\\n${formattedDictionaryMap}\\n};\\n`;\n\n return content;\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAAiC;AACjC,kBAA4C;AAC5C,mBAA4B;AAKrB,MAAM,gCAAgC,CAC3C,cACA,SAAwB,OACxB,oBAAgB,gCAAiB,MACtB;AACX,QAAM,EAAE,QAAQ,IAAI,cAAc;AAElC,MAAI,UAAU;AAEd,QAAM,kBAAkB,aAAa,IAAI,CAAC,oBAAoB;AAAA,IAC5D,kBAAc,sBAAS,SAAS,cAAc;AAAA,IAC9C,QAAI,sBAAS,oBAAgB,qBAAQ,cAAc,CAAC;AAAA;AAAA,IACpD,MAAM,QAAI,0BAAY,cAAc,CAAC;AAAA;AAAA,EACvC,EAAE;AAGF,kBAAgB,QAAQ,CAAC,eAAe;AACtC,QAAI,WAAW;AACb,iBAAW,UAAU,WAAW,IAAI,UAAU,WAAW,YAAY;AAAA;AACvE,QAAI,WAAW;AACb,iBAAW,SAAS,WAAW,IAAI,eAAe,WAAW,YAAY;AAAA;AAAA,EAC7E,CAAC;AAED,aAAW;AAGX,QAAM,yBAAiC,gBACpC,IAAI,CAAC,eAAe,MAAM,WAAW,EAAE,MAAM,WAAW,IAAI,EAAE,EAC9D,KAAK,KAAK;AAEb,MAAI,WAAW;AACb,eAAW;AAAA,EAAqB,sBAAsB;AAAA;AAAA;AACxD,MAAI,WAAW;AACb,eAAW;AAAA,EAAuB,sBAAsB;AAAA;AAAA;AAE1D,SAAO;AACT;","names":[]}
|
|
@@ -16,8 +16,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
16
16
|
var dictionary_to_main_exports = {};
|
|
17
17
|
module.exports = __toCommonJS(dictionary_to_main_exports);
|
|
18
18
|
__reExport(dictionary_to_main_exports, require('./createDictionaryEntryPoint.cjs'), module.exports);
|
|
19
|
+
__reExport(dictionary_to_main_exports, require('./generateDictionaryListContent.cjs'), module.exports);
|
|
19
20
|
// Annotate the CommonJS export names for ESM import in node:
|
|
20
21
|
0 && (module.exports = {
|
|
21
|
-
...require('./createDictionaryEntryPoint.cjs')
|
|
22
|
+
...require('./createDictionaryEntryPoint.cjs'),
|
|
23
|
+
...require('./generateDictionaryListContent.cjs')
|
|
22
24
|
});
|
|
23
25
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/index.ts"],"sourcesContent":["export * from './createDictionaryEntryPoint';\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,uCAAc,yCAAd;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/index.ts"],"sourcesContent":["export * from './createDictionaryEntryPoint';\nexport * from './generateDictionaryListContent';\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,uCAAc,yCAAd;AACA,uCAAc,4CADd;","names":[]}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -8,6 +8,8 @@ import {
|
|
|
8
8
|
import { fetchDistantDictionaries } from "./fetchDistantDictionaries.mjs";
|
|
9
9
|
import { fetchDistantDictionaryKeys } from "./fetchDistantDictionaryKeys.mjs";
|
|
10
10
|
import { filterDictionaryLocales } from "./filterDictionaryLocales.mjs";
|
|
11
|
+
import { getBuiltDictionariesPath } from "./getBuiltDictionariesPath.mjs";
|
|
12
|
+
import { getBuiltUnmergedDictionariesPath } from "./getBuiltUnmergedDictionariesPath.mjs";
|
|
11
13
|
import { listDictionaries } from "./listDictionariesPath.mjs";
|
|
12
14
|
import {
|
|
13
15
|
listGitFiles
|
|
@@ -23,7 +25,10 @@ import { prepareIntlayer } from "./prepareIntlayer.mjs";
|
|
|
23
25
|
import { processPerLocaleDictionary } from "./processPerLocaleDictionary.mjs";
|
|
24
26
|
import { reduceDictionaryContent } from "./reduceDictionaryContent/reduceDictionaryContent.mjs";
|
|
25
27
|
import { buildDictionary } from "./transpiler/declaration_file_to_dictionary/index.mjs";
|
|
26
|
-
import {
|
|
28
|
+
import {
|
|
29
|
+
createDictionaryEntryPoint,
|
|
30
|
+
generateDictionaryListContent
|
|
31
|
+
} from "./transpiler/dictionary_to_main/index.mjs";
|
|
27
32
|
import { createModuleAugmentation } from "./transpiler/dictionary_to_type/createModuleAugmentation.mjs";
|
|
28
33
|
import {
|
|
29
34
|
writeContentDeclaration
|
|
@@ -37,6 +42,9 @@ export {
|
|
|
37
42
|
fetchDistantDictionaries,
|
|
38
43
|
fetchDistantDictionaryKeys,
|
|
39
44
|
filterDictionaryLocales,
|
|
45
|
+
generateDictionaryListContent,
|
|
46
|
+
getBuiltDictionariesPath,
|
|
47
|
+
getBuiltUnmergedDictionariesPath,
|
|
40
48
|
handleAdditionalContentDeclarationFile,
|
|
41
49
|
handleContentDeclarationFileChange,
|
|
42
50
|
listDictionaries,
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export { checkDictionaryChanges } from './checkDictionaryChanges';\nexport {\n buildAndWatchIntlayer,\n handleAdditionalContentDeclarationFile,\n handleContentDeclarationFileChange,\n watch,\n} from './chokidar/watcher';\nexport { fetchDistantDictionaries } from './fetchDistantDictionaries';\nexport { fetchDistantDictionaryKeys } from './fetchDistantDictionaryKeys';\nexport { filterDictionaryLocales } from './filterDictionaryLocales';\nexport { listDictionaries } from './listDictionariesPath';\nexport {\n listGitFiles,\n type DiffMode,\n type ListGitFilesOptions,\n} from './listGitFiles';\nexport {\n loadDictionaries,\n loadDistantDictionaries,\n loadLocalDictionaries,\n} from './loadDictionaries/index';\nexport { mergeDictionaries } from './mergeDictionaries';\nexport { prepareContentDeclaration } from './prepareContentDeclaration';\nexport { prepareIntlayer } from './prepareIntlayer';\nexport { processPerLocaleDictionary } from './processPerLocaleDictionary';\nexport { reduceDictionaryContent } from './reduceDictionaryContent/reduceDictionaryContent';\nexport { buildDictionary } from './transpiler/declaration_file_to_dictionary/index';\nexport {
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export { checkDictionaryChanges } from './checkDictionaryChanges';\nexport {\n buildAndWatchIntlayer,\n handleAdditionalContentDeclarationFile,\n handleContentDeclarationFileChange,\n watch,\n} from './chokidar/watcher';\nexport { fetchDistantDictionaries } from './fetchDistantDictionaries';\nexport { fetchDistantDictionaryKeys } from './fetchDistantDictionaryKeys';\nexport { filterDictionaryLocales } from './filterDictionaryLocales';\nexport { getBuiltDictionariesPath } from './getBuiltDictionariesPath';\nexport { getBuiltUnmergedDictionariesPath } from './getBuiltUnmergedDictionariesPath';\nexport { listDictionaries } from './listDictionariesPath';\nexport {\n listGitFiles,\n type DiffMode,\n type ListGitFilesOptions,\n} from './listGitFiles';\nexport {\n loadDictionaries,\n loadDistantDictionaries,\n loadLocalDictionaries,\n} from './loadDictionaries/index';\nexport { mergeDictionaries } from './mergeDictionaries';\nexport { prepareContentDeclaration } from './prepareContentDeclaration';\nexport { prepareIntlayer } from './prepareIntlayer';\nexport { processPerLocaleDictionary } from './processPerLocaleDictionary';\nexport { reduceDictionaryContent } from './reduceDictionaryContent/reduceDictionaryContent';\nexport { buildDictionary } from './transpiler/declaration_file_to_dictionary/index';\nexport {\n createDictionaryEntryPoint,\n generateDictionaryListContent,\n} from './transpiler/dictionary_to_main';\nexport { createModuleAugmentation } from './transpiler/dictionary_to_type/createModuleAugmentation';\nexport {\n writeContentDeclaration,\n type DictionaryStatus,\n} from './writeContentDeclaration';\n"],"mappings":"AAAA,SAAS,8BAA8B;AACvC;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,gCAAgC;AACzC,SAAS,kCAAkC;AAC3C,SAAS,+BAA+B;AACxC,SAAS,gCAAgC;AACzC,SAAS,wCAAwC;AACjD,SAAS,wBAAwB;AACjC;AAAA,EACE;AAAA,OAGK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,yBAAyB;AAClC,SAAS,iCAAiC;AAC1C,SAAS,uBAAuB;AAChC,SAAS,kCAAkC;AAC3C,SAAS,+BAA+B;AACxC,SAAS,uBAAuB;AAChC;AAAA,EACE;AAAA,EACA;AAAA,OACK;AACP,SAAS,gCAAgC;AACzC;AAAA,EACE;AAAA,OAEK;","names":[]}
|
|
@@ -1,41 +1,9 @@
|
|
|
1
1
|
import { getConfiguration } from "@intlayer/config";
|
|
2
2
|
import { existsSync, mkdirSync, writeFileSync } from "fs";
|
|
3
|
-
import {
|
|
3
|
+
import { resolve } from "path";
|
|
4
4
|
import { getBuiltDictionariesPath } from "../../getBuiltDictionariesPath.mjs";
|
|
5
5
|
import { getBuiltUnmergedDictionariesPath } from "../../getBuiltUnmergedDictionariesPath.mjs";
|
|
6
|
-
import {
|
|
7
|
-
const generateDictionaryListContent = (dictionaries, format = "esm", configuration = getConfiguration()) => {
|
|
8
|
-
const { mainDir } = configuration.content;
|
|
9
|
-
let content = "";
|
|
10
|
-
const dictionariesRef = dictionaries.map((dictionaryPath) => ({
|
|
11
|
-
relativePath: relative(mainDir, dictionaryPath),
|
|
12
|
-
id: basename(dictionaryPath, extname(dictionaryPath)),
|
|
13
|
-
// Get the base name as the dictionary id
|
|
14
|
-
hash: `_${getFileHash(dictionaryPath)}`
|
|
15
|
-
// Get the hash of the dictionary to avoid conflicts
|
|
16
|
-
}));
|
|
17
|
-
dictionariesRef.forEach((dictionary) => {
|
|
18
|
-
if (format === "esm")
|
|
19
|
-
content += `import ${dictionary.hash} from '${dictionary.relativePath}';
|
|
20
|
-
`;
|
|
21
|
-
if (format === "cjs")
|
|
22
|
-
content += `const ${dictionary.hash} = require('${dictionary.relativePath}');
|
|
23
|
-
`;
|
|
24
|
-
});
|
|
25
|
-
content += "\n";
|
|
26
|
-
const formattedDictionaryMap = dictionariesRef.map((dictionary) => ` "${dictionary.id}": ${dictionary.hash}`).join(",\n");
|
|
27
|
-
if (format === "esm")
|
|
28
|
-
content += `export default {
|
|
29
|
-
${formattedDictionaryMap}
|
|
30
|
-
};
|
|
31
|
-
`;
|
|
32
|
-
if (format === "cjs")
|
|
33
|
-
content += `module.exports = {
|
|
34
|
-
${formattedDictionaryMap}
|
|
35
|
-
};
|
|
36
|
-
`;
|
|
37
|
-
return content;
|
|
38
|
-
};
|
|
6
|
+
import { generateDictionaryListContent } from "./generateDictionaryListContent.mjs";
|
|
39
7
|
const createDictionaryEntryPoint = (configuration = getConfiguration(), dictionariesKeys) => {
|
|
40
8
|
const { mainDir } = configuration.content;
|
|
41
9
|
if (!existsSync(mainDir)) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/createDictionaryEntryPoint.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config';\nimport { existsSync, mkdirSync, writeFileSync } from 'fs';\nimport {
|
|
1
|
+
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/createDictionaryEntryPoint.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config';\nimport { existsSync, mkdirSync, writeFileSync } from 'fs';\nimport { resolve } from 'path';\nimport { getBuiltDictionariesPath } from '../../getBuiltDictionariesPath';\nimport { getBuiltUnmergedDictionariesPath } from '../../getBuiltUnmergedDictionariesPath';\nimport { generateDictionaryListContent } from './generateDictionaryListContent';\n\n/**\n * This function generates a list of dictionaries in the main directory\n */\nexport const createDictionaryEntryPoint = (\n configuration = getConfiguration(),\n dictionariesKeys?: string[]\n) => {\n const { mainDir } = configuration.content;\n\n // Create main directory if it doesn't exist\n if (!existsSync(mainDir)) {\n mkdirSync(mainDir, { recursive: true });\n }\n\n let dictionariesPath: string[] = getBuiltDictionariesPath(configuration);\n\n if (dictionariesKeys) {\n dictionariesPath = dictionariesPath.filter((dictionaryPath) =>\n dictionariesKeys.some((key) => dictionaryPath.endsWith(`${key}.json`))\n );\n }\n\n // Create the dictionary list file\n const cjsContent = generateDictionaryListContent(\n dictionariesPath,\n 'cjs',\n configuration\n );\n writeFileSync(resolve(mainDir, 'dictionaries.cjs'), cjsContent);\n\n const esmContent = generateDictionaryListContent(\n dictionariesPath,\n 'esm',\n configuration\n );\n writeFileSync(resolve(mainDir, 'dictionaries.mjs'), esmContent);\n\n const unmergedDictionariesPath: string[] =\n getBuiltUnmergedDictionariesPath(configuration);\n\n const unmergedCjsContent = generateDictionaryListContent(\n unmergedDictionariesPath,\n 'cjs',\n configuration\n );\n writeFileSync(\n resolve(mainDir, 'unmerged_dictionaries.cjs'),\n unmergedCjsContent\n );\n\n const unmergedEsmContent = generateDictionaryListContent(\n unmergedDictionariesPath,\n 'esm',\n configuration\n );\n writeFileSync(\n resolve(mainDir, 'unmerged_dictionaries.mjs'),\n unmergedEsmContent\n );\n};\n"],"mappings":"AAAA,SAAS,wBAAwB;AACjC,SAAS,YAAY,WAAW,qBAAqB;AACrD,SAAS,eAAe;AACxB,SAAS,gCAAgC;AACzC,SAAS,wCAAwC;AACjD,SAAS,qCAAqC;AAKvC,MAAM,6BAA6B,CACxC,gBAAgB,iBAAiB,GACjC,qBACG;AACH,QAAM,EAAE,QAAQ,IAAI,cAAc;AAGlC,MAAI,CAAC,WAAW,OAAO,GAAG;AACxB,cAAU,SAAS,EAAE,WAAW,KAAK,CAAC;AAAA,EACxC;AAEA,MAAI,mBAA6B,yBAAyB,aAAa;AAEvE,MAAI,kBAAkB;AACpB,uBAAmB,iBAAiB;AAAA,MAAO,CAAC,mBAC1C,iBAAiB,KAAK,CAAC,QAAQ,eAAe,SAAS,GAAG,GAAG,OAAO,CAAC;AAAA,IACvE;AAAA,EACF;AAGA,QAAM,aAAa;AAAA,IACjB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA,gBAAc,QAAQ,SAAS,kBAAkB,GAAG,UAAU;AAE9D,QAAM,aAAa;AAAA,IACjB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA,gBAAc,QAAQ,SAAS,kBAAkB,GAAG,UAAU;AAE9D,QAAM,2BACJ,iCAAiC,aAAa;AAEhD,QAAM,qBAAqB;AAAA,IACzB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA;AAAA,IACE,QAAQ,SAAS,2BAA2B;AAAA,IAC5C;AAAA,EACF;AAEA,QAAM,qBAAqB;AAAA,IACzB;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA;AAAA,IACE,QAAQ,SAAS,2BAA2B;AAAA,IAC5C;AAAA,EACF;AACF;","names":[]}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { getConfiguration } from "@intlayer/config";
|
|
2
|
+
import { basename, extname, relative } from "path";
|
|
3
|
+
import { getFileHash } from "../../utils.mjs";
|
|
4
|
+
const generateDictionaryListContent = (dictionaries, format = "esm", configuration = getConfiguration()) => {
|
|
5
|
+
const { mainDir } = configuration.content;
|
|
6
|
+
let content = "";
|
|
7
|
+
const dictionariesRef = dictionaries.map((dictionaryPath) => ({
|
|
8
|
+
relativePath: relative(mainDir, dictionaryPath),
|
|
9
|
+
id: basename(dictionaryPath, extname(dictionaryPath)),
|
|
10
|
+
// Get the base name as the dictionary id
|
|
11
|
+
hash: `_${getFileHash(dictionaryPath)}`
|
|
12
|
+
// Get the hash of the dictionary to avoid conflicts
|
|
13
|
+
}));
|
|
14
|
+
dictionariesRef.forEach((dictionary) => {
|
|
15
|
+
if (format === "esm")
|
|
16
|
+
content += `import ${dictionary.hash} from '${dictionary.relativePath}';
|
|
17
|
+
`;
|
|
18
|
+
if (format === "cjs")
|
|
19
|
+
content += `const ${dictionary.hash} = require('${dictionary.relativePath}');
|
|
20
|
+
`;
|
|
21
|
+
});
|
|
22
|
+
content += "\n";
|
|
23
|
+
const formattedDictionaryMap = dictionariesRef.map((dictionary) => ` "${dictionary.id}": ${dictionary.hash}`).join(",\n");
|
|
24
|
+
if (format === "esm")
|
|
25
|
+
content += `export default {
|
|
26
|
+
${formattedDictionaryMap}
|
|
27
|
+
};
|
|
28
|
+
`;
|
|
29
|
+
if (format === "cjs")
|
|
30
|
+
content += `module.exports = {
|
|
31
|
+
${formattedDictionaryMap}
|
|
32
|
+
};
|
|
33
|
+
`;
|
|
34
|
+
return content;
|
|
35
|
+
};
|
|
36
|
+
export {
|
|
37
|
+
generateDictionaryListContent
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=generateDictionaryListContent.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/generateDictionaryListContent.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config';\nimport { basename, extname, relative } from 'path';\nimport { getFileHash } from '../../utils';\n\n/**\n * This function generates the content of the dictionary list file\n */\nexport const generateDictionaryListContent = (\n dictionaries: string[],\n format: 'cjs' | 'esm' = 'esm',\n configuration = getConfiguration()\n): string => {\n const { mainDir } = configuration.content;\n\n let content = '';\n\n const dictionariesRef = dictionaries.map((dictionaryPath) => ({\n relativePath: relative(mainDir, dictionaryPath),\n id: basename(dictionaryPath, extname(dictionaryPath)), // Get the base name as the dictionary id\n hash: `_${getFileHash(dictionaryPath)}`, // Get the hash of the dictionary to avoid conflicts\n }));\n\n // Import all dictionaries\n dictionariesRef.forEach((dictionary) => {\n if (format === 'esm')\n content += `import ${dictionary.hash} from '${dictionary.relativePath}';\\n`;\n if (format === 'cjs')\n content += `const ${dictionary.hash} = require('${dictionary.relativePath}');\\n`;\n });\n\n content += '\\n';\n\n // Format Dictionary Map\n const formattedDictionaryMap: string = dictionariesRef\n .map((dictionary) => ` \"${dictionary.id}\": ${dictionary.hash}`)\n .join(',\\n');\n\n if (format === 'esm')\n content += `export default {\\n${formattedDictionaryMap}\\n};\\n`;\n if (format === 'cjs')\n content += `module.exports = {\\n${formattedDictionaryMap}\\n};\\n`;\n\n return content;\n};\n"],"mappings":"AAAA,SAAS,wBAAwB;AACjC,SAAS,UAAU,SAAS,gBAAgB;AAC5C,SAAS,mBAAmB;AAKrB,MAAM,gCAAgC,CAC3C,cACA,SAAwB,OACxB,gBAAgB,iBAAiB,MACtB;AACX,QAAM,EAAE,QAAQ,IAAI,cAAc;AAElC,MAAI,UAAU;AAEd,QAAM,kBAAkB,aAAa,IAAI,CAAC,oBAAoB;AAAA,IAC5D,cAAc,SAAS,SAAS,cAAc;AAAA,IAC9C,IAAI,SAAS,gBAAgB,QAAQ,cAAc,CAAC;AAAA;AAAA,IACpD,MAAM,IAAI,YAAY,cAAc,CAAC;AAAA;AAAA,EACvC,EAAE;AAGF,kBAAgB,QAAQ,CAAC,eAAe;AACtC,QAAI,WAAW;AACb,iBAAW,UAAU,WAAW,IAAI,UAAU,WAAW,YAAY;AAAA;AACvE,QAAI,WAAW;AACb,iBAAW,SAAS,WAAW,IAAI,eAAe,WAAW,YAAY;AAAA;AAAA,EAC7E,CAAC;AAED,aAAW;AAGX,QAAM,yBAAiC,gBACpC,IAAI,CAAC,eAAe,MAAM,WAAW,EAAE,MAAM,WAAW,IAAI,EAAE,EAC9D,KAAK,KAAK;AAEb,MAAI,WAAW;AACb,eAAW;AAAA,EAAqB,sBAAsB;AAAA;AAAA;AACxD,MAAI,WAAW;AACb,eAAW;AAAA,EAAuB,sBAAsB;AAAA;AAAA;AAE1D,SAAO;AACT;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/index.ts"],"sourcesContent":["export * from './createDictionaryEntryPoint';\n"],"mappings":"AAAA,cAAc;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../../src/transpiler/dictionary_to_main/index.ts"],"sourcesContent":["export * from './createDictionaryEntryPoint';\nexport * from './generateDictionaryListContent';\n"],"mappings":"AAAA,cAAc;AACd,cAAc;","names":[]}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export { buildAndWatchIntlayer, handleAdditionalContentDeclarationFile, handleCo
|
|
|
3
3
|
export { fetchDistantDictionaries } from './fetchDistantDictionaries';
|
|
4
4
|
export { fetchDistantDictionaryKeys } from './fetchDistantDictionaryKeys';
|
|
5
5
|
export { filterDictionaryLocales } from './filterDictionaryLocales';
|
|
6
|
+
export { getBuiltDictionariesPath } from './getBuiltDictionariesPath';
|
|
7
|
+
export { getBuiltUnmergedDictionariesPath } from './getBuiltUnmergedDictionariesPath';
|
|
6
8
|
export { listDictionaries } from './listDictionariesPath';
|
|
7
9
|
export { listGitFiles, type DiffMode, type ListGitFilesOptions, } from './listGitFiles';
|
|
8
10
|
export { loadDictionaries, loadDistantDictionaries, loadLocalDictionaries, } from './loadDictionaries/index';
|
|
@@ -12,7 +14,7 @@ export { prepareIntlayer } from './prepareIntlayer';
|
|
|
12
14
|
export { processPerLocaleDictionary } from './processPerLocaleDictionary';
|
|
13
15
|
export { reduceDictionaryContent } from './reduceDictionaryContent/reduceDictionaryContent';
|
|
14
16
|
export { buildDictionary } from './transpiler/declaration_file_to_dictionary/index';
|
|
15
|
-
export { createDictionaryEntryPoint } from './transpiler/dictionary_to_main
|
|
17
|
+
export { createDictionaryEntryPoint, generateDictionaryListContent, } from './transpiler/dictionary_to_main';
|
|
16
18
|
export { createModuleAugmentation } from './transpiler/dictionary_to_type/createModuleAugmentation';
|
|
17
19
|
export { writeContentDeclaration, type DictionaryStatus, } from './writeContentDeclaration';
|
|
18
20
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EACL,qBAAqB,EACrB,sCAAsC,EACtC,kCAAkC,EAClC,KAAK,GACN,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EACL,YAAY,EACZ,KAAK,QAAQ,EACb,KAAK,mBAAmB,GACzB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,gBAAgB,EAChB,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,mDAAmD,CAAC;AAC5F,OAAO,EAAE,eAAe,EAAE,MAAM,mDAAmD,CAAC;AACpF,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EACL,qBAAqB,EACrB,sCAAsC,EACtC,kCAAkC,EAClC,KAAK,GACN,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AACtF,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EACL,YAAY,EACZ,KAAK,QAAQ,EACb,KAAK,mBAAmB,GACzB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,gBAAgB,EAChB,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,mDAAmD,CAAC;AAC5F,OAAO,EAAE,eAAe,EAAE,MAAM,mDAAmD,CAAC;AACpF,OAAO,EACL,0BAA0B,EAC1B,6BAA6B,GAC9B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,wBAAwB,EAAE,MAAM,0DAA0D,CAAC;AACpG,OAAO,EACL,uBAAuB,EACvB,KAAK,gBAAgB,GACtB,MAAM,2BAA2B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createDictionaryEntryPoint.d.ts","sourceRoot":"","sources":["../../../../src/transpiler/dictionary_to_main/createDictionaryEntryPoint.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"createDictionaryEntryPoint.d.ts","sourceRoot":"","sources":["../../../../src/transpiler/dictionary_to_main/createDictionaryEntryPoint.ts"],"names":[],"mappings":"AAOA;;GAEG;AACH,eAAO,MAAM,0BAA0B,GACrC,yDAAkC,EAClC,mBAAmB,MAAM,EAAE,SAsD5B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This function generates the content of the dictionary list file
|
|
3
|
+
*/
|
|
4
|
+
export declare const generateDictionaryListContent: (dictionaries: string[], format?: "cjs" | "esm", configuration?: import("@intlayer/config").IntlayerConfig) => string;
|
|
5
|
+
//# sourceMappingURL=generateDictionaryListContent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generateDictionaryListContent.d.ts","sourceRoot":"","sources":["../../../../src/transpiler/dictionary_to_main/generateDictionaryListContent.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,6BAA6B,GACxC,cAAc,MAAM,EAAE,EACtB,SAAQ,KAAK,GAAG,KAAa,EAC7B,yDAAkC,KACjC,MAgCF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/transpiler/dictionary_to_main/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/transpiler/dictionary_to_main/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/chokidar",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.",
|
|
6
6
|
"keywords": [
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"fast-glob": "^3.3.3",
|
|
69
69
|
"p-limit": "^3.1.0",
|
|
70
70
|
"simple-git": "^3.27.0",
|
|
71
|
-
"@intlayer/
|
|
72
|
-
"@intlayer/api": "5.5.
|
|
73
|
-
"@intlayer/
|
|
74
|
-
"@intlayer/dictionaries-entry": "5.5.
|
|
75
|
-
"
|
|
76
|
-
"intlayer": "5.5.
|
|
71
|
+
"@intlayer/config": "5.5.2",
|
|
72
|
+
"@intlayer/api": "5.5.2",
|
|
73
|
+
"@intlayer/core": "5.5.2",
|
|
74
|
+
"@intlayer/unmerged-dictionaries-entry": "5.5.2",
|
|
75
|
+
"intlayer": "5.5.2",
|
|
76
|
+
"@intlayer/dictionaries-entry": "5.5.2"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@changesets/cli": "2.28.1",
|
|
@@ -92,17 +92,17 @@
|
|
|
92
92
|
"typescript": "^5.8.2",
|
|
93
93
|
"@utils/eslint-config": "1.0.4",
|
|
94
94
|
"@utils/ts-config": "1.0.4",
|
|
95
|
-
"@utils/ts-config-types": "1.0.4",
|
|
96
95
|
"@utils/tsup-config": "1.0.4",
|
|
97
|
-
"@
|
|
96
|
+
"@utils/ts-config-types": "1.0.4",
|
|
97
|
+
"@intlayer/backend": "5.5.2"
|
|
98
98
|
},
|
|
99
99
|
"peerDependencies": {
|
|
100
100
|
"fast-glob": "^3.3.3",
|
|
101
101
|
"react": ">=16.0.0",
|
|
102
|
-
"@intlayer/
|
|
103
|
-
"@intlayer/
|
|
104
|
-
"@intlayer/
|
|
105
|
-
"intlayer": "5.5.
|
|
102
|
+
"@intlayer/api": "5.5.2",
|
|
103
|
+
"@intlayer/config": "5.5.2",
|
|
104
|
+
"@intlayer/core": "5.5.2",
|
|
105
|
+
"intlayer": "5.5.2"
|
|
106
106
|
},
|
|
107
107
|
"engines": {
|
|
108
108
|
"node": ">=14.18"
|