Skip to content

Commit ab32d04

Browse files
authored
[builder][INTERNAL] manifestCreator: If manifest.json already exists, log message as verbose instead of info (SAP/ui5-builder#586)
In the future, we expect libraries to always have a manifest.json and not to rely on this task. An eventual "manifest enhancement" task could update any dynamic information in an already existing manifest.json, thus making benefits from using the manifestCreator obsolete.
1 parent e709fe2 commit ab32d04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/builder/lib/processors/manifestCreator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ module.exports = function({libraryResource, resources, options}) {
712712
// check whether a manifest exists already
713713
const manifestResource = libBundle.findResource("manifest.json");
714714
if ( manifestResource != null ) {
715-
log.info("Library manifest already exists at '%s', skipping generation", manifestResource.getPath());
715+
log.verbose("Library manifest already exists at '%s', skipping generation", manifestResource.getPath());
716716
return Promise.resolve(null); // a fulfillment of null indicates that no manifest has been created
717717
}
718718

0 commit comments

Comments
 (0)