This repository has been archived by the owner on Jul 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
gruntfile.js
260 lines (223 loc) · 7.1 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
pkg: require('./package.json'),
meta: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %> */'
},
// Grunt clean will delete the contents of the dist/ directory before we start a new build
clean: {
build: ['frontend/dist'],
options: {
force: true
}
},
// Grunt will watch for file changes
// Sass files changed in the styles folder/sub-dir will call the ['sass'] task
// Include pages changed will call the ['ssi'] task - Server Side Includes
watch: {
watch_sass: {
files: 'frontend/src/styles/**/*.scss',
tasks: ['sass:dev', 'postcss']
},
watch_ssi: {
files: 'frontend/src/pages/**/*.html',
tasks: ['ssi']
},
watch_js: {
files: ['frontend/src/scripts/**/*.js'],
tasks: ['uglify']
},
watch_img: {
files: ['frontend/src/img/**/*'],
tasks: ['imagemin']
}
},
// Grunt will pre-process sass files into css files from src to destination directory
sass: {
dev: {
files: {
//destination //source file
'frontend/dist/styles/styles.css': 'frontend/src/styles/main.scss'
}
},
deploy: {
options: {
style: 'compressed'
},
files: {
//destination //source file
'frontend/dist/styles/styles.css': 'frontend/src/styles/main.scss'
}
}
},
// Grunt uses a type of serverside include for common page elements like header/footer/nav
// https://github.com/jamesor/grunt-ssimin
ssi: {
dev: {
options: {
// task-specific options
cache: 'all',
cacheDir: '.ssi-cache',
baseDir: 'frontend/src/pages' // dir where to locate files to be processed for ssi
},
files: [{
// target-specific file lists and/or options go here
expand: true, // enable dynamic expansion
cwd: 'frontend/src/pages', // src matches are relative to this path
src: ['*.html'], // actual patten(s) to match
dest: 'frontend/dist' // destination path prefix
}]
}
},
// Config for grunt-postcss (multiple css post processors, minification, autoprefixing)
postcss: {
options: {
safe: true,
map: true,
processors: [
require('rucksack-css')({
fallbacks: true
}),
require('pixrem')(16, { // Value is the same as on _config.scss $fsz variable multiplied by 10.
html: true,
replace: false,
atrules: true,
browsers: ['last 3 versions', '> 2%', 'ie 8', 'ie 7']
}),
require('autoprefixer')({
browsers: ['last 3 versions', '> 2%', 'ie 8', 'ie 7']
})
]
},
main: {
src: 'frontend/dist/styles/styles.css'
}
},
// concatenate javascript files for development
concat: {
options: {
separator: ';',
},
dist: {
src: [
'frontend/src/scripts/vendors/jquery.js',
'frontend/src/scripts/vendors/fastclick.js',
'frontend/src/scripts/vendors/jquery.cookie.js',
'frontend/src/scripts/vendors/jquery.placeholder.js',
'frontend/src/scripts/vendors/jquery.selectBox.js',
'frontend/src/scripts/vendors/jquery.easing.js',
'frontend/src/scripts/vendors/foundation.js',
'frontend/src/scripts/vendors/foundation.equalizer.js',
'frontend/src/scripts/vendors/slick.js',
'frontend/src/scripts/scripts.js'
],
dest: 'frontend/dist/scripts/scripts.js',
},
},
// compress javascript files for deployment
uglify: {
options: {
beautify: false,
sourceMap: true,
sourceMapIncludeSources: true,
sourceMapName: 'frontend/dist/scripts/scripts.map'
},
main: {
files: {
'frontend/dist/scripts/scripts.js': [
// 'scripts/**/*.js'
'frontend/src/scripts/vendors/jquery.js',
'frontend/src/scripts/vendors/fastclick.js',
'frontend/src/scripts/vendors/jquery.cookie.js',
'frontend/src/scripts/vendors/jquery.placeholder.js',
'frontend/src/scripts/vendors/jquery.selectBox.js',
'frontend/src/scripts/vendors/jquery.easing.js',
'frontend/src/scripts/vendors/foundation.js',
'frontend/src/scripts/vendors/foundation.equalizer.js',
'frontend/src/scripts/vendors/slick.js',
'frontend/src/scripts/scripts.js'
]
}
}
},
// Browsersync live reloads the page you are working on across all browsers across all devices
// Browsersync can watch your files as you work. Changes you make will either be injected into the page
// (CSS & images) or will cause all browsers to do a full-page refresh.
browserSync: {
default_options: {
bsFiles: {
src: [
'frontend/dist/styles/*.css',
'frontend/dist/*.html',
'frontend/dist/scripts/*.js'
]
},
options: {
watchTask: true,
server: {
baseDir: 'frontend/dist'
}
}
}
},
// Minify images in production
imagemin: {
dist: {
options: {
optimizationLevel: 3
},
files: [
{
expand: true,
cwd: 'frontend/src/img/',
src: ['*.{png,jpg,gif}'],
dest: 'frontend/dist/img'
}
]
}
},
// Copy fonts to distribution directory
copy: {
fonts: {
files: [
{
expand: true,
cwd: 'frontend/src/fonts/',
src: ['**'],
dest: 'frontend/dist/fonts'
}
]
}
},
// GitHub pages generates a live site from a git repo
// Running this task with grunt will create a temporary clone of the current repository,
// create a gh-pages branch if one doesn't already exist, copy over all files from the
// dist directory that match patterns from thesrc configuration, commit all changes,
// and push to the origin remote.
'gh-pages': {
options: {
base: 'frontend/dist'
},
src: ['**']
}
});
// Dependent plug-ins
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-browser-sync');
grunt.loadNpmTasks('grunt-ssi');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-gh-pages');
// include call to sass/ssi separately for first time run thereafter called via watch
grunt.registerTask('default', ['sass:dev', 'ssi', 'postcss', 'concat', 'imagemin', 'copy:fonts', 'browserSync', 'watch']);
// run grunt deploy for a distribution ready product
grunt.registerTask('deploy', ['clean', 'sass:deploy', 'ssi', 'postcss', 'uglify', 'imagemin', 'copy:fonts', 'gh-pages']);
grunt.registerTask('backend', ['mocha_istanbul']);
};