我是靠谱客的博主 飘逸哈密瓜,最近开发中收集的这篇文章主要介绍grunt.config.init()_gruntjs api,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

来源: http://gruntjs.cn/api/config.init/

初始化配置数据。

grunt.config.init(configObject)

方法缩写: .initConfig()。

例子:

configObject可通过 .config() 方法访问。

grunt.config.init({
name: 'gruntjs.cn'
});
//调用 grunt.config() 输出:{ name: 'gruntjs.cn'}

当配置数据被获取时,<% %>模板字符串会被执行。

grunt.config.init({
host: 'gruntjs.cn',
name: '<%= host %>'
});
//调用 grunt.config() 输出:{ host: 'gruntjs.cn', name: 'gruntjs.cn'}

源代码:

// Initialize config data.
config.init = function(obj) {
grunt.verbose.write('Initializing config...').ok();
// Initialize and return data.
return (config.data = obj || {});
};

查看完整源代码

转载于:https://www.cnblogs.com/haiq87/p/3230526.html

最后

以上就是飘逸哈密瓜为你收集整理的grunt.config.init()_gruntjs api的全部内容,希望文章能够帮你解决grunt.config.init()_gruntjs api所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部