builder/lib/tasks/replaceBuildtime.js

  1. import stringReplacer from "../processors/stringReplacer.js";
  2. function pad(v) {
  3. return String(v).padStart(2, "0");
  4. }
  5. function getTimestamp() {
  6. const date = new Date();
  7. const year = date.getFullYear();
  8. const month = pad(date.getMonth() + 1);
  9. const day = pad(date.getDate());
  10. const hours = pad(date.getHours());
  11. const minutes = pad(date.getMinutes());
  12. // yyyyMMdd-HHmm
  13. return year + month + day + "-" + hours + minutes;
  14. }
  15. /**
  16. * @public
  17. * @module @ui5/builder/tasks/replaceBuildtime
  18. */
  19. /**
  20. * Task to replace the buildtime <code>${buildtime}</code>.
  21. *
  22. * @public
  23. * @function default
  24. * @static
  25. *
  26. * @param {object} parameters Parameters
  27. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  28. * @param {object} parameters.options Options
  29. * @param {string} parameters.options.pattern Pattern to locate the files to be processed
  30. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  31. */
  32. export default function({workspace, options: {pattern}}) {
  33. const timestamp = getTimestamp();
  34. return workspace.byGlob(pattern)
  35. .then((processedResources) => {
  36. return stringReplacer({
  37. resources: processedResources,
  38. options: {
  39. pattern: "${buildtime}",
  40. replacement: timestamp
  41. }
  42. });
  43. })
  44. .then((processedResources) => {
  45. return Promise.all(processedResources.map((resource) => {
  46. return workspace.write(resource);
  47. }));
  48. });
  49. }