-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
37 lines (32 loc) · 954 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Generated on 2016-06-14 using generator-sapui5 0.0.1
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
openui5_preload: {
danonemenu: {
options: {
resources: {
cwd: "widgets/danonemenu",
prefix: "DanoneMenu"
},
dest: "widgets/danonemenu"
},
components: true
},
widget2: {
options: {
resources: {
cwd: "widgets/component",
prefix: "namespace/namespacepart2/namespacepart3"
},
dest: "widgets/component"
},
components: true
}
}
});
grunt.loadNpmTasks('grunt-openui5');
grunt.registerTask('default', [
'openui5_preload'
]);
};