project/lib/specifications/extensions/Task.js

  1. import path from "node:path";
  2. import Extension from "../Extension.js";
  3. import {pathToFileURL} from "node:url";
  4. /**
  5. * Task
  6. *
  7. * @public
  8. * @class
  9. * @alias @ui5/project/specifications/extensions/Task
  10. * @extends @ui5/project/specifications/Extension
  11. * @hideconstructor
  12. */
  13. class Task extends Extension {
  14. constructor(parameters) {
  15. super(parameters);
  16. }
  17. /* === Attributes === */
  18. /**
  19. * @public
  20. */
  21. async getTask() {
  22. return (await this._getImplementation()).task;
  23. }
  24. /**
  25. * @public
  26. */
  27. async getRequiredDependenciesCallback() {
  28. return (await this._getImplementation()).determineRequiredDependencies;
  29. }
  30. /* === Internals === */
  31. /**
  32. * @private
  33. */
  34. async _getImplementation() {
  35. const taskPath = path.join(this.getRootPath(), this._config.task.path);
  36. const {default: task, determineRequiredDependencies} = await import(pathToFileURL(taskPath));
  37. return {
  38. task, determineRequiredDependencies
  39. };
  40. }
  41. /**
  42. * @private
  43. */
  44. async _validateConfig() {
  45. // TODO: Move to validator
  46. if (/--\d+$/.test(this.getName())) {
  47. throw new Error(`Task name must not end with '--<number>'`);
  48. }
  49. // TODO: Check that paths exist
  50. }
  51. }
  52. export default Task;