@ruiapp/rapid-configure-tools 0.2.3 → 0.2.5
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @ruiapp/rapid-configure-tools
|
|
2
2
|
|
|
3
|
+
## 0.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 661cf18: fix build order
|
|
8
|
+
|
|
9
|
+
## 0.2.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7ea5699: use RapidPageLoader instead of RapidPage when gen page-models
|
|
14
|
+
|
|
3
15
|
## 0.2.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/mod.js
CHANGED
|
@@ -188,7 +188,7 @@ function generateModelIndexFiles(declarationsDirectory) {
|
|
|
188
188
|
outputDir,
|
|
189
189
|
typeDefFilePath,
|
|
190
190
|
categoryDirName: "pages",
|
|
191
|
-
modelTypeName: "
|
|
191
|
+
modelTypeName: "RapidPageLoader",
|
|
192
192
|
modelsFileName: "page-models",
|
|
193
193
|
});
|
|
194
194
|
generateModelIndexFilesOfTypeDir({
|
|
@@ -381,12 +381,12 @@ class MetaFileGenerator {
|
|
|
381
381
|
declarationsDirectory = path__default["default"].join(process.cwd(), declarationsDirectory);
|
|
382
382
|
}
|
|
383
383
|
console.log("Generating meta files...");
|
|
384
|
+
console.log("generateDictionaryCodes");
|
|
385
|
+
generateDictionaryCodes(declarationsDirectory);
|
|
384
386
|
console.log("generateModelIndexFiles");
|
|
385
387
|
generateModelIndexFiles(declarationsDirectory);
|
|
386
388
|
console.log("generateModelCodes");
|
|
387
389
|
generateModelCodes(declarationsDirectory);
|
|
388
|
-
console.log("generateDictionaryCodes");
|
|
389
|
-
generateDictionaryCodes(declarationsDirectory);
|
|
390
390
|
console.log("generateSdRpdModelTypes");
|
|
391
391
|
generateSdRpdModelTypes(declarationsDirectory);
|
|
392
392
|
console.log("Done.");
|
package/package.json
CHANGED
|
@@ -204,7 +204,7 @@ export function generateModelIndexFiles(declarationsDirectory: string) {
|
|
|
204
204
|
outputDir,
|
|
205
205
|
typeDefFilePath,
|
|
206
206
|
categoryDirName: "pages",
|
|
207
|
-
modelTypeName: "
|
|
207
|
+
modelTypeName: "RapidPageLoader",
|
|
208
208
|
modelsFileName: "page-models",
|
|
209
209
|
});
|
|
210
210
|
|
|
@@ -16,12 +16,12 @@ export default class MetaFileGenerator {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
console.log("Generating meta files...");
|
|
19
|
+
console.log("generateDictionaryCodes");
|
|
20
|
+
generateDictionaryCodes(declarationsDirectory);
|
|
19
21
|
console.log("generateModelIndexFiles");
|
|
20
22
|
generateModelIndexFiles(declarationsDirectory);
|
|
21
23
|
console.log("generateModelCodes");
|
|
22
24
|
generateModelCodes(declarationsDirectory);
|
|
23
|
-
console.log("generateDictionaryCodes");
|
|
24
|
-
generateDictionaryCodes(declarationsDirectory);
|
|
25
25
|
console.log("generateSdRpdModelTypes");
|
|
26
26
|
generateSdRpdModelTypes(declarationsDirectory);
|
|
27
27
|
console.log("Done.");
|