-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntFile.js
159 lines (143 loc) · 4.94 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
(function() {
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
// Clean the previous build
clean: [
'web/build'
],
// Treat the react files (.jsx to .js)
browserify: {
options: {
debug: true,
extensions: ['.jsx'],
transform: ['reactify']
},
reactApp: {
src: 'src/AppBundle/Resources/jsx/app.jsx',
dest: 'web/build/js/app.js'
}
},
// Basic copy into web/build
// TODO :: maybe not required because we need to uglify them anyway
copy: {
bootstrap: {
files: [{
expand: true,
cwd: 'bower_components/bootstrap/dist',
src: '**/*',
dest: 'web/build/vendor/bootstrap/'
}]
},
jquery: {
files: [{
expand: true,
cwd: 'bower_components/jquery/dist',
src: '**/*',
dest: 'web/build/vendor/jquery/'
}]
},
jqueryidletimer: {
files: [{
expand: true,
cwd: 'bower_components/jquery-idletimer/dist',
src: '**/*',
dest: 'web/build/vendor/jquery-idletimer/'
}]
},
underscore: {
files: [{
expand: true,
cwd: 'bower_components/underscore',
src: '**/*',
dest: 'web/build/vendor/underscore/'
}]
}
},
// Css compression
cssmin: {
target: {
files: [{
expand: true,
cwd: 'src/AppBundle/Resources/css',
src: ['*.css', '!*.min.css'],
dest: 'web/build/css',
ext: '.min.css'
}]
}
},
// Javascript compression
uglify: {
target: {
files: {
'web/build/js/main.min.js': [
'web/build/vendor/jquery/jquery.js',
'web/build/vendor/jquery-idletimer/idle-timer.js',
'web/build/vendor/bootstrap/js/bootstrap.js',
'web/build/vendor/underscore/underscore.js',
'web/build/js/app.js'
]
}
}
},
// Rebuild when some files are modified
watch: {
css: {
files: 'src/AppBundle/Resources/**/*.css',
tasks: ['cssmin'],
options: {
interrupt: true
}
},
reactApp: {
files: 'src/AppBundle/Resources/**/*.jsx',
tasks: ['browserify', 'uglify'],
options: {
interrupt: true
}
}
},
// Shortcuts for some frequently used commands
shell: {
installSymfonyVendor: {
command: 'php composer.phar install --prefer-dist --optimize-autoloader'
},
installNodeModules: {
command: 'npm install'
},
installBowerComponents: {
command: 'bower install'
},
runSymfonyServer: {
command: 'php app/console server:run'
}
}
});
// Install vendors and tools
grunt.registerTask('install', [
'shell:installSymfonyVendor',
'shell:installNodeModules',
'shell:installBowerComponents'
]);
// Prepare a build
grunt.registerTask('dump', [
'clean',
'copy',
'browserify',
'cssmin',
'uglify'
]);
// Start a symfony server
grunt.registerTask('server', [
'shell:runSymfonyServer'
]);
// Used grunt plugins
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-shell');
};
}());