builder/lib/tasks/escapeNonAsciiCharacters.js

  1. import nonAsciiEscaper from "../processors/nonAsciiEscaper.js";
  2. /**
  3. * @public
  4. * @module @ui5/builder/tasks/escapeNonAsciiCharacters
  5. */
  6. /**
  7. * Task to escape non ascii characters in properties files resources.
  8. *
  9. * @public
  10. * @function default
  11. * @static
  12. *
  13. * @param {object} parameters Parameters
  14. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  15. * @param {object} parameters.options Options
  16. * @param {string} parameters.options.pattern Glob pattern to locate the files to be processed
  17. * @param {string} parameters.options.encoding source file encoding either "UTF-8" or "ISO-8859-1"
  18. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  19. */
  20. export default async function({workspace, options: {pattern, encoding}}) {
  21. if (!encoding) {
  22. throw new Error("[escapeNonAsciiCharacters] Mandatory option 'encoding' not provided");
  23. }
  24. const allResources = await workspace.byGlob(pattern);
  25. const processedResources = await nonAsciiEscaper({
  26. resources: allResources,
  27. options: {
  28. encoding: nonAsciiEscaper.getEncodingFromAlias(encoding)
  29. }
  30. });
  31. await Promise.all(processedResources.map((resource) => workspace.write(resource)));
  32. }