Skip to content

Commit c362db9

Browse files
committed
fix(my.lib.sample.base): add missing library.js
1 parent 07e23a0 commit c362db9

File tree

1 file changed

+15
-0
lines changed
  • demo/BaseComponent/src/my/lib/sample/base

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
sap.ui.define(function() {
2+
3+
"use strict";
4+
5+
sap.ui.getCore().initLibrary({
6+
name : "my.lib.sample.base",
7+
version : "${version}",
8+
noLibraryCSS: true,
9+
dependencies : [ "sap.ui.core" ],
10+
controls : [ ],
11+
types : [ ]
12+
});
13+
14+
return my.lib.sample.base;
15+
});

0 commit comments

Comments
 (0)