-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
120 lines (113 loc) · 2.36 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
/*global module,require*/
var lrSnippet = require('connect-livereload')({
port: 35731
});
var mountFolder = function (connect, dir) {
return connect.static(require('path').resolve(dir));
};
module.exports = function (grunt) {
// load all grunt tasks
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
// configurable paths
var projectConfig = {
dist: 'dist',
src: ''
};
try {
projectConfig.src = require('./bower.json').appPath || projectConfig.src;
} catch (e) {}
grunt.initConfig({
clean: {
build: '<%= config.dist %>'
},
config: projectConfig,
connect: {
server: {
options: {
hostname: '0.0.0.0',
middleware: function (connect) {
return [
lrSnippet,
mountFolder(connect, projectConfig.src),
mountFolder(connect, projectConfig.src + 'dist/html')
];
},
port: 9002
}
}
},
less: {
development: {
files: {
"dist/css/rcue-rdom.css": "less/rcue-rdom.less"
},
options: {
paths: ["less/"]
}
},
production: {
files: {
"dist/css/rcue-rdom.min.css": "less/rcue-rdom.less"
},
options: {
cleancss: true,
paths: ["less/"]
}
}
},
ssi: {
options: {
cache: 'all'
},
html: {
expand: true,
src: ['html/*.html'],
dest: 'dist/',
},
},
uglify: {
options: {
mangle: false
},
production: {
files: {
'dist/js/rcue-rdom.min.js': ['dist/js/rcue-rdom.js']
}
}
},
watch: {
css: {
files: 'less/*.less',
tasks: ['less']
},
js: {
files: ['dist/js/*.js', '!dist/js/*.min.js'],
tasks: ['uglify']
},
livereload: {
files: [
'dist/css/*.css',
'dist/html/*.html',
'!html/*.html'
]
},
options: {
livereload: 35731
},
ssi: {
files: ['html/*.html', 'html/_inc/*.inc'],
tasks: ['ssi']
}
}
});
grunt.registerTask('build', [
'less',
'ssi',
'uglify'
]);
grunt.registerTask('server', [
'connect:server',
'watch'
]);
grunt.registerTask('default', ['build']);
};