You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/documentation/docs/pages/Configuration.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ metadata:
29
29
### Specification Version and -Type
30
30
A project must define a specification version (`specVersion`), to which its configuration is compatible to. Also see [Specification Versions](#specification-versions).
31
31
32
-
In addition, a project must define a `type`. This can be either `application`, `library`, `theme-library` (since Specification Version 1.1), or `module`.
32
+
In addition, a project must define a `type`. This can be either `application`, `component`, `library`, `theme-library` (since Specification Version 1.1), or `module`.
33
33
34
34
The type defines the default path mappings and build tasks. See [UI5 Builder: Types](./Builder.md#types) for details.
35
35
@@ -40,6 +40,11 @@ specVersion: "5.0"
40
40
type: application
41
41
```
42
42
43
+
```yaml [component]
44
+
specVersion: "5.0"
45
+
type: component
46
+
```
47
+
43
48
```yaml [library]
44
49
specVersion: "5.0"
45
50
type: library
@@ -125,7 +130,7 @@ resources:
125
130
webapp: webapp
126
131
```
127
132
128
-
#### Libraries
133
+
#### Libraries and Components
129
134
- `src`: Mapped to runtime path `/resources`
130
135
- `test`: Mapped to runtime path `/test-resources`
131
136
@@ -275,7 +280,7 @@ Projects that use the OpenUI5 framework cannot depend on projects that use the S
275
280
276
281
::: code-group Example
277
282
278
-
```yaml [application]
283
+
```yaml [application/component]
279
284
specVersion: "5.0"
280
285
type: application
281
286
metadata:
@@ -367,7 +372,7 @@ You can choose which theme library to use by the application that is consuming t
0 commit comments