builder/lib/tasks/generateLibraryManifest.js

  1. import {getLogger} from "@ui5/logger";
  2. const log = getLogger("builder:tasks:generateLibraryManifest");
  3. import manifestCreator from "../processors/manifestCreator.js";
  4. /**
  5. * @public
  6. * @module @ui5/builder/tasks/generateLibraryManifest
  7. */
  8. /**
  9. * Task for creating a library manifest.json from its .library file.
  10. *
  11. * @public
  12. * @function default
  13. * @static
  14. *
  15. * @param {object} parameters Parameters
  16. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  17. * @param {@ui5/project/build/helpers/TaskUtil|object} [parameters.taskUtil] TaskUtil
  18. * @param {object} parameters.options Options
  19. * @param {string} parameters.options.projectName Project name
  20. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  21. */
  22. export default function({workspace, taskUtil, options: {projectName}}) {
  23. // Note:
  24. // *.library files are needed to identify libraries
  25. // *.json files are needed to avoid overwriting them
  26. // *.js files are needed to identify nested components
  27. // *.less, *.css, *.theming and *.theme files are needed to identify supported themes
  28. // *.properties to identify existence of i18n bundles (e.g. messagebundle.properties)
  29. return workspace.byGlob("/resources/**/*.{js,json,library,less,css,theming,theme,properties}").then((resources) => {
  30. // Find all libraries and create a manifest.json file
  31. return workspace.byGlob("/resources/**/.library").then((libraryIndicatorResources) => {
  32. if (libraryIndicatorResources.length < 1) {
  33. // No library found - nothing to do
  34. log.verbose(`Could not find a ".library" file for project ${projectName}. ` +
  35. `Skipping library manifest generation.`);
  36. return;
  37. }
  38. return Promise.all(libraryIndicatorResources.map((libraryIndicatorResource) => {
  39. // Determine library namespace from library indicator file path
  40. // ending with ".library"
  41. // e.g. /resources/sap/foo/.library => sap/foo
  42. const libraryNamespacePattern = /^\/resources\/(.*)\/\.library$/;
  43. const libraryIndicatorPath = libraryIndicatorResource.getPath();
  44. const libraryNamespaceMatch = libraryIndicatorPath.match(libraryNamespacePattern);
  45. if (libraryNamespaceMatch && libraryNamespaceMatch[1]) {
  46. const libraryNamespace = libraryNamespaceMatch[1];
  47. return manifestCreator({
  48. libraryResource: libraryIndicatorResource,
  49. namespace: libraryNamespace,
  50. resources,
  51. getProjectVersion: (projectName) => {
  52. return taskUtil?.getProject(projectName)?.getVersion();
  53. },
  54. options: {
  55. }
  56. }).then((manifest) => {
  57. if (manifest) {
  58. return workspace.write(manifest);
  59. }
  60. });
  61. } else {
  62. log.verbose(`Could not determine library namespace from file "${libraryIndicatorPath}" ` +
  63. `for project ${projectName}. Skipping library manifest generation.`);
  64. return Promise.resolve();
  65. }
  66. }));
  67. });
  68. });
  69. }