-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
178 lines (176 loc) · 4.28 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
module.exports = function(grunt){
//项目配置
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
banner: '/*!\n' +
' * Site Name: <%= pkg.name %>\n' +
' * Site URI: <%= pkg.URI %>\n' +
' * Description: <%= pkg.description %>\n' +
' * Author: <%= pkg.author %>\n' +
' * Author URI: <%= pkg.authorURI %>\n' +
' * Version: <%= pkg.version %>\n' +
' * © <%= grunt.template.today("yyyy") %> <%= pkg.name%>. All rights reserved.\n' +
' */\n',
// babel: {
// options: {
// // sourceMap: true,
// presets: ['env']
// },
// dist: {
// files: {
// // 'js/pull.min.js': 'js/pull.js'
// }
// }
// },
eslint: {
options: {
config: '.eslintrc',
reset: true
},
app: ['js/*.js', '!js/*.min.js', '!js/*-bak*', '!js/loader.js']
},
uglify: {
vendor: {
options: {
compress: {
drop_console: true
}
},
files: {
'js/vendor.min.js': [
'node_modules/jquery/dist/jquery.js',
'node_modules/bootstrap/dist/js/bootstrap.js',
'node_modules/wow.js/dist/wow.js',
// 'node_modules/jquery-easing/jquery.easing.js'
]
}
},
app: {
options: {
compress: {
drop_console: true // for debug
},
banner: '<%= banner %>'
},
files: {
'js/app.min.js': 'js/app.js'
}
}
},
less: {
options: {
banner: '<%= banner %>'
},
app: {
files: {
'css/app.min.css': 'less/build.less'
}
}
},
autoprefixer:{
options:{
browserslist:['chrome','ie','firefox'],
map:true
},
single_file: {
src: 'css/app.min.css',//需要加前缀的css文件
dest: 'css/app.min.css'//grunt处理后生成的css文件,如果文件夹中没有该文件,则自动创建
},
},
cssmin: {
vendor: {
options: {
// banner: '<%= banner %>',
keepSpecialComments: '0'
},
files: {
'css/vendor.min.css': [
'node_modules/bootstrap/dist/css/bootstrap.css',
'node_modules/animate.css/animate.css'
]
}
},
app: {
options: {
banner: '<%= banner %>',
keepSpecialComments: '0'
},
files: {
'css/app.min.css': 'css/app.min.css'
}
}
},
// clean: {
// options: {
// 'force': true
// },
// release: ["release", "js/*.min.map"]
// },
// copy: {
// free: {
// files: [
// {
// expand: true,
// src:[
// 'account/**/*',
// 'action/**/*',
// 'css/**/*.min.css',
// 'css/fonts/**/*',
// 'dist/**/*',
// 'fonts/**/*',
// 'images/**/*',
// 'img/**/*',
// 'includes/**/*',
// 'inc/**/*',
// 'js/**/*min.js',
// 'js/**/*min.css',
// 'languages/**/*',
// 'pages/**/*',
// 'templates/**/*',
// 'modules/**/*',
// 'settings/**/*',
// 'widgets/**/*',
// 'widget/**/*',
// 'screenshot.*',
// '*.php',
// '*.css',
// '!**/cache/*',
// '!**/*-own*', // 不录入own自用文件
// '!**/*-bak*', // 不录入bak文件
// ],
// dest: 'release/<%= pkg.name %>/'
// },
// ]
// }
// },
watch: {
uglify: {
files: ['js/*.js', '!js/*.min.js'],
tasks: ['newer:uglify'], // newer使uglify只作用于有变化的文件
options: {
livereload: true
}
},
less: {
files: ['less/**/*.less'],
tasks: ['less', 'autoprefixer', 'cssmin:app'],
options: {
livereload: true
}
}
}
});
//加载插件
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-watch');
// grunt.loadNpmTasks('grunt-contrib-clean');
// grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-babel');
//制定任务
grunt.registerTask('default', ['eslint', 'uglify', 'less', 'autoprefixer', 'cssmin', 'watch']);
}