前言 - Grunt 到底是啥?
工作中我们会遇到,对代码(js,css,html)就行加工:压缩、合并、代码检查、测试 等等。
我们需要一个集成的环境 就行操作,Grunt就是这样的工具。
是一个js开发框架,具体功能是以安装插件的形式实现的,所以扩展性无限。
安装
安装 node.js
Grunt是基于Node.js为基础的,所以没装node.js的需要安装下。
http://nodejs.org/
已经安装的可以更新下
macos 下加 sudo
安装 Grunt CLI
1
| npm install -g grunt-cli
|
配置我们第一个项目
建立项目目录
1
2
3
4
| /grunt-do
src/
css/
dist/
|
src 开发的js代码
css 开发的css代码
dist 发布代码
根目录下创建
1
2
3
4
5
6
| {
"name": "myapp",
"version": "0.1.1",
"devDependencies": {
}
}
|
安装Grunt
1
| npm install grunt --save-dev
|
package.json
被加入了依赖配置
1
2
3
4
5
6
7
| {
"name": "myapp",
"version": "0.1.1",
"devDependencies": {
"grunt": "^1.0.1"
}
}
|
多了个
的目录,有空可以阅读下,暂时我们无视这个目录。
根目录下创建
1
2
3
4
5
6
7
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json')
});
};
|
这是Grunt的配置文件
initConfig初始pkg属性,这都是套路,读取上面的package.json
插件
上面我们完成了项目的初始,具体的工作grunt都是以插件的形式实现的。
合并代码
src/mods/module1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // 模块1
define(function(require, exports, module) {
console.log("module1 被装载~");
exports.num = 10;
exports.add = function(){
this.num ++;
};
exports.get = function(){
return this.num;
};
});
|
src/mods/module2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // 模块2
define(function(require, exports, module) {
console.log("module2 被装载~");
exports.num = 10;
exports.add = function(){
this.num ++;
};
exports.get = function(){
return this.num;
};
});
|
命令行
1
| npm install grunt-contrib-concat --save-dev
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 合并
concat:{
options:{
separator:'\n',
banner:'//model合并 \n',
footer:'\n//--- end ---',
},
myapp:{
src:['src/mods/*.js'],
dest:'dist/<%= pkg.version %>/module.js'
}
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.registerTask('test', ['concat']);
};
|
concat.options 配置
separator 合并文件之间的字符
banner 头部字符
footer 底部字符
myapp 是你自己取的名字 可以多开
src 源文件
dest 目标文件
命令行
查看合并后的文件 dist/<版本号>/module.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
| //model合并
// 模块1
define(function(require, exports, module) {
console.log("module1 被装载~");
exports.num = 10;
exports.add = function(){
this.num ++;
};
exports.get = function(){
return this.num;
};
});
// 模块2
define(function(require, exports, module) {
console.log("module2 被装载~");
exports.num = 10;
exports.add = function(){
this.num ++;
};
exports.get = function(){
return this.num;
};
});
//--- end ---
|
压缩js代码
命令行
1
| npm install grunt-contrib-uglify --save-dev
|
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
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 合并
concat:{
options:{
separator:'\n',
banner:'//model合并 \n',
footer:'\n//--- end ---',
},
myapp:{
src:['src/mods/*.js'],
dest:'dist/<%= pkg.version %>/module.js'
}
},
// js压缩
uglify:{
module_targer:{
options:{
banner:'/*app:<%= pkg.name %> , module all*/\n',
footer:'\n//--- end ---',
},
files:{
'dist/<%= pkg.version %>/module.min.js':['<%= concat.myapp.dest %>']
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('test', ['concat','uglify']);
};
|
files 的源文件是上次合并的dest内容,压缩后结果文件 module.min.js
grunt.registerTask 任务是一个序列 先合并 后压缩 只要有一个环节出错 任务中断
命令行
查看 dist/<版本号>/module.min.js版本号>
1
2
3
| /*app:myapp , module all*/
define(function(a,b,c){console.log("module1 被装载~"),b.num=10,b.add=function(){this.num++},b.get=function(){return this.num}}),define(function(a,b,c){console.log("module2 被装载~"),b.num=10,b.add=function(){this.num++},b.get=function(){return this.num}});
//--- end ---
|
压缩成功!
压缩css代码
css/index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| .main {
margin: 10px 0
}
/*多方适用*/
.bread,
.selector,
.type-wrap,
.value {
overflow: hidden
}
.bread,
.selector,
.details,
.hot-sale {
margin: 15px 0
}
......
|
命令行
1
| npm install grunt-contrib-cssmin --save-dev
|
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
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 合并
concat:{
options:{
separator:'\n',
banner:'//model合并 \n',
footer:'\n//--- end ---',
},
myapp:{
src:['src/mods/*.js'],
dest:'dist/<%= pkg.version %>/module.js'
}
},
// js压缩
uglify:{
module_targer:{
options:{
banner:'/*app:<%= pkg.name %> , module all*/\n',
footer:'\n//--- end ---',
},
files:{
'dist/<%= pkg.version %>/module.min.js':['<%= concat.myapp.dest %>']
}
}
},
// css压缩
cssmin:{
index:{
files:{
'dist/<%= pkg.version %>/index.min.css':['css/index.css']
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('test', ['concat','uglify','cssmin']);
};
|
加入cssmin任务
命令行
查看 dist/<版本号>/index.min.css版本号>
1
| .main{margin:10px 0}.bread,.selector,.type-wrap,.value{overflow:hidden}.bread,.details,.hot-sale,.selector{margin:15px 0}.filter,.hot-sale,.selector{border:1px solid #ddd}.key{padding:10px 10px 0 15px}.type-wrap ul li{float:left;list-style-type:none}.sui-btn{border-radius:0}.bread .sui-breadcrumb{padding:3px 15px;margin:0}
|
代码检查
src/mods/module1.js
1
2
3
4
| // 模块1
define(function(require, exports, module) {
>>> haha
console.log("module1 被装载~");
|
第三行加入错误
命令行
1
| npm install grunt-contrib-jshint --save-dev
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 检查js
// http://jshint.com/docs/options/
jshint:{
files:['src/**/*.js'],
// options:{
// jQuery:true,
// console:true,
// module:true,
// document:true
// }
},
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('jshint', ['jshint']);
};
|
命令行
代码测试
test/unit1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>QUnit Example</title>
<link rel="stylesheet" href="../lib/qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../lib/qunit.js"></script>
<script>
QUnit.test( "hello test", function( assert ) {
assert.ok( 1 == "1", "Passed!" );
});
</script>
</body>
</html>
|
命令行
1
| npm install grunt-contrib-qunit --save-dev
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 测试
qunit: {
all: ['test/**/*.html']
},
});
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.registerTask('qunit', ['qunit']);
};
|
命令行
CMD模式代码发布
src\call.js
1
2
3
4
5
6
7
| // 模块call
define(["mods/module1","mods/module2"],function(require, exports, module) {
var mod1 = require("module1");
var mod2 = require("module2");
});
|
命令行
1
| npm install grunt-cmd-transport --save-dev
|
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
| module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 转换
transport:{
options: {
debug:false,
include:'all'
},
module:{
files: [{
expand: true,
cwd: 'src',
src: ['**/*.js', '!*.min.js'],
dest: 'dist/<%= pkg.version %>',
ext: '.js'
}]
},
},
});
grunt.loadNpmTasks('grunt-cmd-transport');
grunt.registerTask('ts', ['transport']);
};
|
命令行
查看 dist/<版本号>/版本号>
被标准格式化了,加入了cmd模块的id,后期可以方便合并文件.
配置git
过滤掉
目录
拿到一个现有项目
执行
看看是否有错误
需要注意
1
2
| // 错误的写法
grunt.registerTask('transport', ['transport']);
|
其它名字还有 concat、uglify、cssmin、jshint、qunit、transport …
1
| grunt.registerTask('default', ['concat','uglify','cssmin']);
|
运行
资料
http://gruntjs.com/
http://www.gruntjs.net/
http://jshint.com/docs/options/
代码
https://github.com/hans007/JavaScriptCodes/tree/master/gruntjs
我的博客