w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
首页
/
Grunt 教程
/
Grunt 退出码
Grunt 退出码
退出码
0
- 无错误!
1
- 致命错误
2
- 未找到gruntfile
3
- Task 错误
4
- 模版处理错误
5
- 无效的shell自动完成规则
6
- 警告
Grunt 深入任务内幕
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
Grunt 文档
Grunt 概述
Grunt 快速入门
Grunt 配置任务
Gruntfile 实例
Grunt 创建任务
Grunt 创建插件
Grunt 使用命令行工具
Grunt API
grunt
grunt.config
grunt.event
grunt.file
grunt.log
grunt.option
grunt.task
grunt.template
grunt.util
Grunt 其他
安装 Grunt
Grunt 常见问题
Grunt 项目脚手架
Grunt 深入任务内幕
Grunt 退出码
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }