-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
164 lines (139 loc) · 3.72 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
module.exports = function(grunt) {
//concat合并js文件
var defineConcat = {
basic_and_extras : {
files : {
"dest/<%= pkg.pattern.test %>/<%= pkg.pattern.test %>.grunt.js" : "dist/test.grunt.js",
}
}
};
// 压缩文件,左边为输出压缩文件,右边为需要压缩的文件
var defineUglify = {
my_target : {
options : {
mangle : {
execpt : ['jquery']
}
},
files : {
// 'dest/all.js' : ['lib/**.js'],
}
}
};
// babel编译es6的代码风格转换为es5的代码风格, because of the browser supports es5 compiler.
var defineBable = {
options: {
sourceMap: true,
presets: ['babel-preset-es2015']
},
files: {
expand : true,
src: "./dist/!(index).js",
dest: "./dest/"
}
};
// webpack提供require模块和common模块的js管理调用风格
var defineWebpack = {
/*components: {
entry: './components/handlereomethods/validMethod.js', // This is js components path.
output: {
filename: './dest/handlereomethods/validMethod.js' // Save to lib handle path.
}
},*/
test : {
entry : './dest/dist/test.results.js',
output : {
filename : './dest/dist/runtime/test.results.js'
}
},
reo : {
entry : './dest/dist/reo.js',
output : {
filename : './dest/dist/runtime/reo.js'
}
},
hook : {
entry: './dist/hookmodel/readerstatic.js', // This is js components path.
output : {
filename : './dest/hook.js'
}
},
reojs :{
entry: './dist/templatemodel/template.js', // This is js components path.
output : {
filename : './dest/template.js'
}
}
};
// js规范验证
var defineJshint = {
options : {
curly: true,
eqeqeq: true,
eqnull: true,
browser: true,
globals: {
jQuery: true
}
},
files : ['Gruntfile.js', '/src/**/*.js'],
};
// 监听文件变化
var defineWatch = {
scripts :{
files: ['lib/*.js','components/**/**.js','dist/**/**.js'],
tasks: ['jshint','babel','webpack'],
options: {
spawn: false,
livereload: 0123
},
},
html : {
files :['src/**.html'],
options:{
}
},
jshint : {
files : ['Gruntfile.js']
}
};
// 服务器连接服务,依赖注入进html,如:jq sea angular
var defineWiredep = {
target: {
src: 'src/**.html' // point to your HTML file.
}
};
// 端口服务
var defineConnect = {
server : {
options : {
part : 9000,
keepalive:true,
open: true,
hostname : 'localhost',
base : '',
}
}
};
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: defineConcat,
babel : defineBable,
uglify: defineUglify,
jshint : defineJshint,
wiredep: defineWiredep,
connect: defineConnect,
webpack: defineWebpack,
watch : defineWatch
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-webpack');
grunt.loadNpmTasks('grunt-wiredep');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.registerTask('start', ['concat','babel','uglify','jshint','wiredep','webpack','watch','connect']);
};
// http://blog.csdn.net/ch717828/article/details/50339087