builder/lib/tasks/generateResourcesJson.js

  1. import resourceListCreator from "../processors/resourceListCreator.js";
  2. const DEFAULT_EXCLUDES = [
  3. /*
  4. * exclude mac metadata files
  5. */
  6. "!**/.DS_Store",
  7. /*
  8. * sap-ui-version.json is not part of the resources
  9. */
  10. "!/resources/sap-ui-version.json"
  11. ];
  12. function getCreatorOptions(projectName) {
  13. const creatorOptions = {};
  14. // TODO: Move configuration into ui5.yaml
  15. if ( projectName === "sap.ui.core" ) {
  16. Object.assign(creatorOptions, {
  17. externalResources: {
  18. "sap/ui/core": [
  19. "*",
  20. "sap/base/",
  21. "sap/ui/"
  22. ]
  23. }
  24. });
  25. } else if ( projectName === "sap.ui.integration" ) {
  26. Object.assign(creatorOptions, {
  27. externalResources: {
  28. "sap/ui/integration": [
  29. "sap-ui-integration*.js",
  30. ]
  31. }
  32. });
  33. }
  34. return creatorOptions;
  35. }
  36. /**
  37. * @public
  38. * @module @ui5/builder/tasks/generateResourcesJson
  39. */
  40. /**
  41. * Task for creating a resources.json file, describing all productive build resources.
  42. *
  43. * <p>
  44. * The detailed structure can be found in the documentation:
  45. * {@link https://sdk.openui5.org/topic/adcbcf8b50924556ab3f321fcd9353ea}
  46. * </p>
  47. *
  48. * <p>
  49. * Not supported in combination with task {@link @ui5/builder/tasks/bundlers/generateStandaloneAppBundle}.
  50. * Therefore it is also not supported in combination with self-contained build.
  51. * </p>
  52. *
  53. * @example <caption>sample resources.json</caption>
  54. * const resourcesJson = {
  55. * "_version": "1.1.0",
  56. * "resources": [
  57. * {
  58. * "name": "Component-preload.js",
  59. * "module": "application/mine/Component-preload.js",
  60. * "size": 3746,
  61. * "merged": true,
  62. * "included": [
  63. * "application/mine/Component.js",
  64. * "application/mine/changes/coding/MyExtension.js",
  65. * "application/mine/changes/flexibility-bundle.json",
  66. * "application/mine/changes/fragments/MyFragment.fragment.xml",
  67. * "application/mine/manifest.json"
  68. * ]
  69. * },
  70. * {
  71. * "name": "resources.json",
  72. * "size": 1870
  73. * },
  74. * {
  75. * "name": "rules/Button-dbg.support.js",
  76. * "module": "application/mine/rules/Button.support.js",
  77. * "size": 211,
  78. * "format": "raw",
  79. * "isDebug": true,
  80. * "required": [
  81. * "application/mine/library.js",
  82. * "sap/ui/core/Control.js"
  83. * ],
  84. * "condRequired": [
  85. * "application/mine/changeHandler/SplitButton.js",
  86. * "sap/ui/core/format/DateFormat.js"
  87. * ],
  88. * "dynRequired": true,
  89. * "support": true
  90. * }
  91. * ]
  92. * };
  93. *
  94. * @public
  95. * @function default
  96. * @static
  97. *
  98. * @param {object} parameters Parameters
  99. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  100. * @param {@ui5/fs/AbstractReader} parameters.dependencies Reader or Collection to read dependency files
  101. * @param {@ui5/project/build/helpers/TaskUtil|object} [parameters.taskUtil] TaskUtil
  102. * @param {object} parameters.options Options
  103. * @param {string} parameters.options.projectName Project name
  104. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  105. */
  106. export default async function({workspace, dependencies, taskUtil, options: {projectName}}) {
  107. let resources = await workspace.byGlob(["/resources/**/*"].concat(DEFAULT_EXCLUDES));
  108. let dependencyResources =
  109. await dependencies.byGlob("/resources/**/*.{js,json,xml,html,properties,library,js.map}");
  110. if (taskUtil) {
  111. // Filter out resources that will be omitted from the build results
  112. resources = resources.filter((resource) => {
  113. return !taskUtil.getTag(resource, taskUtil.STANDARD_TAGS.OmitFromBuildResult);
  114. });
  115. dependencyResources = dependencyResources.filter((resource) => {
  116. return !taskUtil.getTag(resource, taskUtil.STANDARD_TAGS.OmitFromBuildResult);
  117. });
  118. }
  119. const resourceLists = await resourceListCreator({
  120. resources,
  121. dependencyResources,
  122. options: getCreatorOptions(projectName),
  123. });
  124. await Promise.all(
  125. resourceLists.map((resourceList) => workspace.write(resourceList))
  126. );
  127. }