[20141025]从0开始Grunt
*:first-child {
margin-top: 0 !important;
}
body>*:last-child {
margin-bottom: 0 !important;
}
/* BLOCKS
=============================================================================*/
p, blockquote, ul, ol, dl, table, pre {
margin: 15px 0;
}
/* HEADERS
=============================================================================*/
h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
}
h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code {
font-size: inherit;
}
h1 {
font-size: 28px;
color: #000;
}
h2 {
font-size: 24px;
border-bottom: 1px solid #ccc;
color: #000;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 14px;
}
h6 {
color: #777;
font-size: 14px;
}
body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}
a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}
h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}
/* LINKS
=============================================================================*/
a {
color: #4183C4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* LISTS
=============================================================================*/
ul, ol {
padding-left: 30px;
}
ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}
ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}
dl {
padding: 0;
}
dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}
dl dt:first-child {
padding: 0;
}
dl dt>:first-child {
margin-top: 0px;
}
dl dt>:last-child {
margin-bottom: 0px;
}
dl dd {
margin: 0 0 15px;
padding: 0 15px;
}
dl dd>:first-child {
margin-top: 0px;
}
dl dd>:last-child {
margin-bottom: 0px;
}
/* CODE
=============================================================================*/
pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}
code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}
pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}
pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}
pre code, pre tt {
background-color: transparent;
border: none;
}
kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}
/* QUOTES
=============================================================================*/
blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}
blockquote>:first-child {
margin-top: 0px;
}
blockquote>:last-child {
margin-bottom: 0px;
}
/* HORIZONTAL RULES
=============================================================================*/
hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}
/* IMAGES
=============================================================================*/
img {
max-width: 100%
}
-->
首先,Grunt是什么?
Grunt是JavaScript任务运行工具。使用它可以自动化诸如文件(夹)操作、代码压缩、代码编译、单元测试、代码规范校验等等重复的任务。
如何安装Grunt?(Windows)
Step1、Grunt依赖Node扩展包,那么必须要安装Node:
- 打开Node官网:http://nodejs.org/
- 点击 INSTALL 按钮,会自动适配环境,下载一个安装包,双击安装即可
- 打开cmd命令行,输入命令代码: node -v ,如果输出一个具体的版本号,如 v0.10.xx ,则表示安装成功。
Step2、安装grunt的命令行工具: 1. 打开cmd命令行,输入命令代码:npm install -g grunt-cli ,该命令表示全局安装grunt的命令行
到此,Grunt算是安装完成。
如何使用?(以一个SPA为例)
首先,创建该项目SPADemo,目录结构如下:
SPADemo
src
images //图片文件夹
styles //样式表文件夹
scripts //脚本文件夹
vendor //存放第三方组件
index.html //默认页
第二步,书写package.json 文件,确定依赖项。放在src同级目录,内容如下:
{
"name": "SPADemo",
"version": "0.1.0",
"devDependencies": {
"grunt": "~0.4.2"
}
}
第三步,打开SPADemo根文件夹,在路径栏输入cmd,进入当前目录的cmd模式,输入 npm i ,初始化依赖项。当更该package.json后,可重复执行该命令。将依赖项重新初始化。会生成一个node_modules文件夹。
第四步,进行Grunt配置。默认配置文件名为Gruntfile.js(.coffee也可以,但是Gruntfile不能更改,同时必须放在src同级目录)
第五步,配置Gruntfile.js/coffee
module.exports = function(grunt){
//初始化Grunt
grunt.initConfig({});
// registerTask(taskName,taskDescription,taskFunc/childTaskArray)
grunt.registerTask(‘default‘,‘任务入口‘,function(){
grunt.log.write(‘任务已启动!‘);
});
};
到现在,一个Grunt已经完整配置好了。进入SPADemo目录的cmd命令行,输入grunt,会显示“任务已启动!”
如何使用插件?
文件清理插件 grunt-contrib-clean
该插件用于清除目录/文件
首先在package.json中添加该依赖包。变化后配置如下:
{
"name": "SPADemo",
"version": "0.1.0",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.6.0"
}
}
然后在Gruntfile.js中增加该插件的配置,代码如下(更详细的配置请参考插件地址):
module.exports = function(grunt){
grunt.initConfig({
//clean插件的配置项,名字不能变化。
//插件地址:https://github.com/gruntjs/grunt-contrib-clean
clean: {
//任务具体配置,清除dist文件夹
cleanDist: {
force: true, //允许操作当前工作目录之外的目录
src: ‘dist/**/*‘ //dist下的所有文件和目录
}
}
});
grunt.loadNpmTasks(‘grunt-contrib-clean‘);// 必须,使用clean插件,必须要调用该方法,加载插件
// registerTask(taskName,taskDescription,taskFunc/childTaskArray)
grunt.registerTask(‘default‘,‘任务入口‘,function(){
grunt.log.write(‘任务已启动!‘);
grunt.task.run([
‘clean:cleanDist‘ //使用clean任务的cleanDist配置运行任务
]);
});
};
最后cmd运行grunt命令,就可以执行对dist目录的清理了。可以手动新建dist文件夹测试。
写在最后
Grunt是一个庞大的生态系统,我们可以自由的选择数以百计的插件来帮助处理自动化任务。同时,如果发现没有合适的插件,我们还可以自己创建插件并通过npm发布,以供更多人使用和完善。