project/lib/build/helpers/ProjectBuilderOutputStyle.js

  1. /**
  2. * Processes build results into a specific directory structure.
  3. *
  4. * @public
  5. * @readonly
  6. * @enum {string}
  7. * @property {string} Default The default directory structure for every project type.
  8. * For applications this is identical to "Flat" and for libraries to "Namespace".
  9. * Other types have a more distinct default output style.
  10. * @property {string} Flat Omits the project namespace and the "resources" directory.
  11. * @property {string} Namespace Respects project namespace and the "resources" directory.
  12. * @module @ui5/project/build/ProjectBuilderOutputStyle
  13. */
  14. export default {
  15. Default: "Default",
  16. Flat: "Flat",
  17. Namespace: "Namespace"
  18. };