uranio 0.1.20 → 0.1.21
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/.uranio/package.json +1 -1
- package/dist/bin.js +0 -0
- package/package.json +1 -1
- package/src/cli/generate/index.ts +7 -0
package/.uranio/package.json
CHANGED
package/dist/bin.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -126,6 +126,7 @@ function _get_uranio_extended_interfaces(params: GenerateParams) {
|
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
// log.trace(uranio_extended_interfaces);
|
|
129
|
+
_debug_interfaces(uranio_extended_interfaces);
|
|
129
130
|
return uranio_extended_interfaces;
|
|
130
131
|
}
|
|
131
132
|
|
|
@@ -238,3 +239,9 @@ function _first_letter_lowercase(str: string): string {
|
|
|
238
239
|
}
|
|
239
240
|
return str.charAt(0).toLowerCase() + str.slice(1);
|
|
240
241
|
}
|
|
242
|
+
|
|
243
|
+
function _debug_interfaces(uranio_extended_interfaces: plutonio.Interfaces){
|
|
244
|
+
for(let [key, _value] of Object.entries(uranio_extended_interfaces)){
|
|
245
|
+
log.info(`Processing Interface: ${key}`);
|
|
246
|
+
}
|
|
247
|
+
}
|