builder/lib/tasks/minify.js

  1. import minifier from "../processors/minifier.js";
  2. import fsInterface from "@ui5/fs/fsInterface";
  3. /**
  4. * @public
  5. * @module @ui5/builder/tasks/minify
  6. */
  7. /**
  8. * Task to minify resources.
  9. *
  10. * @public
  11. * @function default
  12. * @static
  13. *
  14. * @param {object} parameters Parameters
  15. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  16. * @param {@ui5/project/build/helpers/TaskUtil|object} [parameters.taskUtil] TaskUtil
  17. * @param {object} parameters.options Options
  18. * @param {string} parameters.options.pattern Pattern to locate the files to be processed
  19. * @param {boolean} [parameters.options.omitSourceMapResources=false] Whether source map resources shall
  20. * be tagged as "OmitFromBuildResult" and no sourceMappingURL shall be added to the minified resource
  21. * @param {boolean} [parameters.options.useInputSourceMaps=true] Whether to make use of any existing source
  22. * maps referenced in the resources to be minified. Use this option to preserve reference to the original
  23. * source files, such as TypeScript files, in the generated source map.
  24. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  25. */
  26. export default async function({
  27. workspace, taskUtil, options: {pattern, omitSourceMapResources = false, useInputSourceMaps = true
  28. }}) {
  29. const resources = await workspace.byGlob(pattern);
  30. const processedResources = await minifier({
  31. resources,
  32. fs: fsInterface(workspace),
  33. taskUtil,
  34. options: {
  35. addSourceMappingUrl: !omitSourceMapResources,
  36. readSourceMappingUrl: !!useInputSourceMaps,
  37. useWorkers: !!taskUtil,
  38. }
  39. });
  40. return Promise.all(processedResources.map(async ({
  41. resource, dbgResource, sourceMapResource, dbgSourceMapResource
  42. }) => {
  43. if (taskUtil) {
  44. taskUtil.setTag(resource, taskUtil.STANDARD_TAGS.HasDebugVariant);
  45. taskUtil.setTag(dbgResource, taskUtil.STANDARD_TAGS.IsDebugVariant);
  46. taskUtil.setTag(sourceMapResource, taskUtil.STANDARD_TAGS.HasDebugVariant);
  47. if (omitSourceMapResources) {
  48. taskUtil.setTag(sourceMapResource, taskUtil.STANDARD_TAGS.OmitFromBuildResult);
  49. }
  50. if (dbgSourceMapResource) {
  51. taskUtil.setTag(dbgSourceMapResource, taskUtil.STANDARD_TAGS.IsDebugVariant);
  52. if (omitSourceMapResources) {
  53. taskUtil.setTag(dbgSourceMapResource, taskUtil.STANDARD_TAGS.OmitFromBuildResult);
  54. }
  55. }
  56. }
  57. return Promise.all([
  58. workspace.write(resource),
  59. workspace.write(dbgResource),
  60. workspace.write(sourceMapResource),
  61. dbgSourceMapResource && workspace.write(dbgSourceMapResource)
  62. ]);
  63. }));
  64. }