forked from StartBootstrap/startbootstrap-clean-blog-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
62 lines (58 loc) · 1.49 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
'use strict';
const imageminJpegRecompress = require('imagemin-jpeg-recompress');
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
imagemin: {
imgs: {
options: {
use: [
imageminJpegRecompress({
method: 'ms-ssim',
quality: 'veryhigh'
})
]
},
files: [{
// Set to true to enable the following options…
expand: true,
cwd: '_site/',
src: ['**/*.{jpg,png,gif,svg}'],
dest: '_site/'
}]
},
},
banner: '/*!\n' +
' * <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under <%= pkg.license %> (https://spdx.org/licenses/<%= pkg.license %>)\n' +
' */\n',
usebanner: {
dist: {
options: {
position: 'top',
banner: '<%= banner %>'
},
files: {
src: [
'_site/assets/**.css',
'_site/assets/**.js'
]
}
}
},
watch: {
scripts: {
files: ['_site/img/**.jpg'],
tasks: ['default'],
options: {
spawn: false,
},
},
},
});
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.loadNpmTasks('grunt-banner');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['imagemin', 'usebanner']);
};