I have source files in this format:
define({
root: {
title: 'Display',
colormappingTitle: 'Color Mappings'
}
});
The output files need to have the the root node deleted which I currently do by script by commenting out the relevant lines:
define({
// root: {
title: 'Anzeige',
colormappingTitle: 'Farbzuordnungen'
// }
});
Is it possible to comment out those lines or delete those lines from the generated files in Passolo UI?
thanks