-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
172 lines (160 loc) · 5.51 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
module.exports = function(grunt) { // Project configuration.
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-includes');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
// grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.registerTask('default', ['sass', 'includes', 'copy:jsLib', 'copy:production', 'uglify']);
grunt.initConfig({
//Read the package.json (optional)
pkg: grunt.file.readJSON('package.json'),
// 变量
meta: {
basePath: "./",
sassPath: "web/module/sass/",
cssPath: "web/public/css/",
tplPath: "web/module/view/",
pagePath: "web/view/",
jsModPath: 'web/module/js/',
jsPath: 'web/public/js/',
pubPath: 'web/public',
proCss: 'production/web/public/css/',
proJs: 'production/web/public/js/',
proPublic: 'production/web/public/',
proPage: 'production/web/view/',
proPath: 'production/',
},
// banner
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %> */\n',
// sass编译
sass: {
bootstrap: {
files: {
"<%= meta.cssPath %>lib/bootstrap.css": "<%= meta.sassPath %>lib/bootstrap/bootstrap.scss",
"<%= meta.cssPath %>lib/bootstrap-ie7.css": "<%= meta.sassPath %>lib/bootstrap/ie/bootstrap-ie7.css",
},
options: {
sourcemap: "true",
trace: true,
// banner: '/*! compiling bootstrap-ie7otstrap and bootstrap-ie7 */',
loadPath: ["<%= meta.sassPath %>lib/bootstrap"]
,style: 'compressed'
}
},
// mutiple compile
page: {
files: [{
expand: true,
cwd: '<%= meta.sassPath %>page/',
src: ['*.scss'],
dest: '<%= meta.cssPath %>',
ext: '.css'
}],
options: {
loadPath: ["<%= meta.sassPath %>pagelet/"],
sourcemap: "true",
trace: true,
style: 'compressed'
}
}
},
// html和js libary编译
includes: {
html: {
cwd: '<%= meta.tplPath %>page',
src: [ '*.html'],
dest: '<%= meta.pagePath %>',
options: {
flatten: true,
// banner: '/*! compiling html of every page */',
includePath: '<%= meta.tplPath %>pagelet/',
filenameSuffix: '.html',
includeRegexp: /^(\s*)\{{2}>\s+(\S+)\s*\}{2}$/,
banner: ''
}
},
//js
js: {
cwd: '<%= meta.jsModPath %>page',
src: [ '*.js'],
dest: '<%= meta.jsPath %>',
options: {
flatten: true,
filenameSuffix: '.js',
includePath: '<%= meta.jsModPath %>pagelet/',
includeRegexp: /^(\s*)\{{2}>\s+(\S+)\s*\}{2}$/,
banner: ''
}
}
},
//压缩文件
uglify: {
compress: {
files: [{
expand:true,
cwd:'<%= meta.jsPath %>',//js目录下
src:'**/*.js',//所有js文件
dest: '<%= meta.proJs %>'//输出到此目录下
}]
}
},
//copy文件
copy: {
// copy到production
production: {
files: [
{
expand: true,
src: ['web/**/*', 'web/***/*'],
dest: 'production/'
}
]
},
//copy jsLibary到static中
jsLib: {
files: [
{
cwd:'<%= meta.jsModPath %>',//js目录下
src: ['lib/**/*.js'],
dest: '<%= meta.jsPath %>/',
expand: true
}
]
}
},
//requirejs
// requirejs: {
// index: {
// options: {
// baseUrl: "<%= meta.jsModPath %>/",
// // mainConfigFile: "../index.js",
// name: "page/index", // assumes a production build using almond
// out: "<%= meta.jsPath %>index.js"
// }
// }
// },
// watch 更变
watch: {
css: {
files: [
"<%= meta.sassPath %>**/*.scss"
],
tasks: ["sass"]
},
html: {
files: [
"<%= meta.tplPath %>**/*.html"
],
tasks: ["includes"]
},
js: {
files: [
"<%= meta.jsModPath %>**/*.js"
],
tasks: ["includes"]
}
}
});
}