-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathGruntfile.js
74 lines (63 loc) · 1.83 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
const sass = require('node-sass');
module.exports = function (grunt) {
// set up config
grunt.initConfig({
pkg: grunt.file.readJSON('package.json')
,
watch: {
sources: {
files: ['*.js', 'sass/*.scss'],
tasks: ['develop:server', 'build'],
options: { nospawn: true }
}
}
,
sass: {
options: {
implementation: sass
},
all: {
files: { 'statics/css/all.css': 'sass/all.scss' }
}
}
,
develop: {
server: {
file: 'index.js',
args: '--env=dev'
}
}
,
uglify: {
clientSideJs: {
options: {
wrap: 'enclose'
},
files: {
'statics/js-concat/all.js': require('./sourceList.js').map(function (name) {
return 'statics' + name;
})
}
}
}
,
cssmin: {
minifyCss: {
files: {
'statics/css/all-min.css': ['statics/css/all.css']
}
}
}
});
// load all grunt tasks
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-develop');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-compress');
// register a few tasks
grunt.registerTask('build', ['sass:all', 'uglify:clientSideJs', 'cssmin:minifyCss']);
grunt.registerTask('start-dev', ['develop:server', 'sass:all', 'watch:sources']);
//grunt.registerTask('start-real', ???);
};