Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DEMO] ui5.yaml: Use new 'component' type #44

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"_version": "1.21.0",
"sap.app": {
"id": "my.lib.sample.base",
"type": "library",
"type": "application",
"embeds": [],
"applicationVersion": {
"version": "${version}"
Expand Down
15 changes: 0 additions & 15 deletions demo/BaseComponent/src/my/lib/sample/base/library.js

This file was deleted.

8 changes: 2 additions & 6 deletions demo/BaseComponent/ui5.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
specVersion: "2.6"
specVersion: "3.1"
metadata:
name: my.lib.sample.base
type: library
type: component
framework:
name: OpenUI5
version: 1.110.0
libraries:
- name: sap.ui.core
builder:
componentPreload:
namespaces:
- "my/lib/sample/base"
10 changes: 3 additions & 7 deletions demo/CategoriesComponent/ui5.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
specVersion: "2.6"
specVersion: "3.1"
metadata:
name: my.lib.sample.categories
type: library
type: component
framework:
name: OpenUI5
version: 1.110.0
libraries:
- name: sap.ui.core
- name: sap.m
- name: themelib_sap_horizon
builder:
componentPreload:
namespaces:
- "my/lib/sample/categories"
- name: themelib_sap_horizon
8 changes: 2 additions & 6 deletions demo/ProductsComponent/ui5.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
specVersion: "2.6"
specVersion: "3.1"
metadata:
name: my.lib.sample.products
type: library
type: component
framework:
name: OpenUI5
version: 1.110.0
libraries:
- name: sap.ui.core
- name: sap.m
- name: themelib_sap_horizon
builder:
componentPreload:
namespaces:
- "my/lib/sample/products"
8 changes: 2 additions & 6 deletions demo/SuppliersComponent/ui5.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
specVersion: "2.6"
specVersion: "3.1"
metadata:
name: my.lib.sample.suppliers
type: library
type: component
framework:
name: OpenUI5
version: 1.110.0
libraries:
- name: sap.ui.core
- name: sap.m
- name: themelib_sap_horizon
builder:
componentPreload:
namespaces:
- "my/lib/sample/suppliers"
Loading