-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
52 lines (44 loc) · 1.22 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
module.exports = function(grunt) {
grunt.initConfig({
jekyll : {
prod : {
src : '.',
dest : './_site'
}
},
clean : {
options : { force: true },
prod : ["/var/www/egegorgulu.com/*"]
},
copy: {
prod: {
files: [
{ expand : true, cwd: '_site/', src : '**', dest : '/var/www/egegorgulu.com/' }
]
}
},
less: {
development: {
options: {
paths: ["./assets"]
},
files: {"./assets/style.css": "./assets/style.less"}
},
production: {
options: {
paths: ["./assets"]
},
files: {"./assets/style.css": "./assets/style.less"}
}
},
});
grunt.loadNpmTasks('grunt-jekyll');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.registerTask('jekyll-prod', function(){
process.env.JEKYLL_ENV = 'production';
grunt.task.run('jekyll');
});
grunt.registerTask('default', ['less', 'jekyll-prod', 'clean', 'copy']);
};