@ui5/task-adaptation
Version:
Custom task for ui5-builder which allows building UI5 Flexibility Adaptation Projects for SAP BTP, Cloud Foundry environment
16 lines • 565 B
JavaScript
import CacheManager from "./cacheManager.js";
export default class AnnotationsCacheManager extends CacheManager {
tempSubFolder;
constructor(configuration, tempSubFolder) {
super(configuration);
this.tempSubFolder = tempSubFolder;
}
getTempId() {
const { destination, appName } = this.configuration;
return super.normalizeId(`ui5-${destination}-${appName}-${this.tempSubFolder}`);
}
getMetadataFilename() {
return "annotationsmetadata.json";
}
}
//# sourceMappingURL=annotationsCacheManager.js.map