-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
60 lines (56 loc) · 1.57 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
// Task configuration.
concat: {
php: {
options: {
banner: '<?php',
footer: '\n?>',
process: function(src, filepath) {
return '\n// Source: ' + filepath + '\n' +
src.replace("<?php","");
}
},
files: {
'build/php': ['config/header.php', 'classes/**/*.php', 'i18n/*.php', 'controllers/**/*.php', 'config/footer.php']
}
},
js: {
options: {
banner: '<script>',
footer: '\n</script>'
},
files: {
'build/js': ['js/*.js']
}
},
layout: {
options: {
process: function(src) {
return src.replace("{ js }", grunt.file.read('build/js'));
}},
files: {
'foler.php': ['build/php', 'layout/layout.html']
}
}
},
watch: {
scripts: {
files: ['**/*'],
tasks: ['default'],
options: {
spawn: false,
}
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
grunt.registerTask('default', ['concat:php', 'concat:js', 'concat:layout']);
};