This repository was archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathGruntfile.js
More file actions
131 lines (115 loc) · 2.97 KB
/
Gruntfile.js
File metadata and controls
131 lines (115 loc) · 2.97 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
module.exports = function(grunt) {
grunt.initConfig({
dir: {
src: 'src',
dest: 'dist',
demo: 'test/demo',
src_chartjs: 'node_modules/chart.js/dist',
bower_components: 'bower_components',
node_modules: 'node_modules'
},
watch: {
options: {
livereload: true
},
css: {
files: ['<%= dir.src %>/**/*.less', '<%= dir.src %>/**/*.css'],
tasks: ['build']
},
js: {
files: ['<%= dir.src %>/**/*.js', '<%= dir.src %>/**/*.xml', '<%= dir.src %>/**/*.json', '<%= dir.src %>/**/*.html', '<%= dir.src %>/**/*.properties'],
tasks: ['build']
}
},
copy: {
main: {
expand: true,
cwd: '<%= dir.dest %>/',
src: ['**'],
dest: '<%= dir.demo %>/thirdparty/',
},
},
clean: {
dist: '<%= dir.dest %>/**'
},
eslint: {
options: {
configFile: './.eslintrc'
},
demo: ['<%= dir.demo %>']
},
connect: {
options: {
port: 8080,
hostname: '*',
livereload: true
},
src: {},
dist: {}
},
openui5_connect: {
options: {
resources: [
'<%= dir.bower_components %>/openui5-sap.ui.core/resources',
'<%= dir.bower_components %>/openui5-sap.m/resources',
'<%= dir.bower_components %>/openui5-sap.ui.layout/resources',
'<%= dir.bower_components %>/openui5-themelib_sap_belize/resources',
],
testresources: [
'<%= dir.bower_components %>/openui5-sap.ui.core/test-resources',
'<%= dir.bower_components %>/openui5-sap.m/test-resources',
'<%= dir.bower_components %>/openui5-sap.ui.layout/test-resources',
'<%= dir.bower_components %>/openui5-themelib_sap_belize/test-resources'
],
},
src: {
options: {
appresources: '<%= dir.demo %>'
}
},
dist: {
options: {
appresources: '<%= dir.demo %>'
}
}
},
openui5_preload: {
library: {
options: {
resources: [
{ cwd: '<%= dir.src %>' },
{ cwd: '<%= dir.src_chartjs %>', src: 'Chart.js', prefix: 'it/designfuture/chartjs/3rdparty' }
],
dest: '<%= dir.dest %>',
compatVersion: '1.44',
compress: false
},
libraries: 'it/designfuture/chartjs'
}
}
});
// These publins provide necessary tasks
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-openui5');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-contrib-watch');
// Server task
grunt.registerTask('serve', function(target) {
grunt.task.run('openui5_connect:' + (target || 'src') );
grunt.task.run('watch');
});
// Linting task
grunt.registerTask('lint', ['eslint']);
// Build task
grunt.registerTask('build_theme', ['clean']);
// Build task
grunt.registerTask('build', ['clean', 'openui5_preload', 'copy']);
// Default task
grunt.registerTask('default', [
'clean',
'build',
'serve'
]);
};