-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] manifestCreator: Only consider component files called Component…
….js (#273) In the past files called *Component.js where also considered as Components during manifest creation.
- Loading branch information
1 parent
327cca0
commit 82fe267
Showing
4 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
test/expected/build/library.h/dest/resources/library/h/components/Component-preload.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
sap.ui.require.preload({ | ||
"library/h/components/Component.js":function(){sap.ui.define(["sap/ui/core/UIComponent"],function(n){"use strict";return n.extend("application.g.Component",{})}); | ||
}, | ||
"library/h/components/TodoComponent.js":function(){/*! | ||
* Some fancy copyright | ||
*/ | ||
console.log(" File "); | ||
} | ||
}); |
4 changes: 4 additions & 0 deletions
4
test/expected/build/library.h/dest/resources/library/h/components/TodoComponent.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/*! | ||
* Some fancy copyright | ||
*/ | ||
console.log(" File "); |
4 changes: 4 additions & 0 deletions
4
test/fixtures/library.h/main/src/library/h/components/TodoComponent.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/*! | ||
* ${copyright} | ||
*/ | ||
console.log(' File '); |