@oraclecc/dcu
Version:
Development tools for Oracle Commerce Cloud.
24 lines (21 loc) • 515 B
JavaScript
/**
* Set up a block suitable for breaking up the putting directory.
* @return a big data structure.
*/
function getPathsBlock() {
return {
otherPaths: [],
existingThemePaths: [],
widgetInstanceDirs: [],
stackBasePaths: [],
stackInstancePaths: [],
stackInstanceDirs: [],
widgetLessPaths: [],
elementTemplatePaths: [],
newElementSet: new Set(),
newThemeSet: new Set(),
newWidgetSet: new Set(),
newStackSet: new Set()
}
}
exports.getPathsBlock = getPathsBlock