an extra named object property

Grunt supports the ability to split each task configuration into several separate configurations allowing different task options to accommodate different scenarious, such as appling different settings to different files, for example. This feature is known as multitasksand is achieved by adding an extra named object property beneath each task property name in the configuration section of the Gruntfile. Each of these multitask configuration objects is known as a target, and different targets can be run through Grunt one at a time, or all targets run together in the order that they are defined.
Grunt支持把每一个任务的配置信息划分至若干单独的配置内容中,以实现不同的任务选项来适应不同的使用场合。例如,对不同的文件应用不同的设定。此特性为称作multitask(多任务),实现方法是在Gruntfile的配置小节中,在每一个任务属性名称之下增加一个额外的命名对象属性。每一个这样的多任务配置对象称作一个target(目标),而不同的target可以通过Grunt来一次一个地运行,或者也可以按照各个target定义的顺序来按次序一起运行所有的target。
an extra named object property的更多相关文章
- Change Or Set Report Object Property At Run Time In Oracle Forms Using Set_Report_Object_Property Command
		Sets the Report object property at run time in Oracle Forms of an report object. The following are t ... 
- JavaScript 堆内存分析新工具 OneHeap
		OneHeap 关注于运行中的 JavaScript 内存信息的展示,用可视化的方式还原了 HeapGraph,有助于理解 v8 内存管理. 背景 JavaScript 运行过程中的大部分数据都保存在 ... 
- Yii2的深入学习--yii\base\Object 类
		之前我们说过 Yii2 中大多数类都继承自 yii\base\Object,今天就让我们来看一下这个类. Object 是一个基础类,实现了属性的功能,其基本内容如下: <?php namesp ... 
- ECMA5.1中Object.seal()和Object.freeze()的区别
		1 Object.seal(O)的调用 When the seal function is called, the following steps are taken: If Type(O) i ... 
- How to access the properties of an object in Javascript
		Javascript has three different kinds of properties: named data property, named accessor property and ... 
- Object Pascal中文手册 经典教程
		Object Pascal 参考手册 (Ver 0.1)ezdelphi@hotmail.com OverviewOverview(概述)Using object pascal(使用 object p ... 
- 放在NSArray、NSDictionary等容器内的对象Item,Item中的property在程序运行过程中被无故释放
		可能是被释放的property本身是OC对象而它的属性被误写成assign,例如: @interface MyItem : Object @property (nonatomic, assign) N ... 
- Object.defineproperty实现数据和视图的联动
		Object.defineproperty语法 var o = {}; // 创建一个新对象 // Example of an object property added with definePro ... 
- property
		一.property用法 property(fget=None, fset=None, fdel=None, doc=None) -> property attribute fget is a ... 
随机推荐
- android提升
			https://blog.csdn.net/lou_liang/article/details/82856531 
- excel隔行取数据
			.6…行数据取出来 好用的公式推荐出来 1.3.5…和2.4.6…行数据取出来 在空白单元格输入=OFFSET(A2,ROW(A2)-2,0) 或=OFFSET(A1,ROW(A1),0) #1,3, ... 
- 去掉行尾的^M
			1. 处理掉行尾的^M 在windos下进行linux内核驱动编写,调试成功后需要集成到内核代码中去,所以会通过虚拟机共享文件夹拷贝到内核对应目录,这时候看源码文件还是没有异常的. 当对该文件进行回车 ... 
- Centos使用光盘yum源
			yum查看所有源 yum repolist all 方法一:本机使用光盘源安装软件的设置 mkdir /media/cdrom mount /dev/cdrom /media/cdrom vim / ... 
- Girls Like You--Maroon 5
			Girls Like You Spent 24 hours, I need more hours with you (24小时过去 还想和你 相处更久) You spent the weekend g ... 
- linux命令 - nohup
			nohup command & nohup scrapy crawl eeo > /home/wangliang/eeo.log & nohou 需要后台的命令 打印的日志位置 ... 
- springMVC的简单了解和环境搭建
			一,什么mvc 模型-视图-控制器(MVC)是一个众所周知的以设计界面应用程序为基础的设计思想.它主要通过 分离模型.视图及控制器在应用程序中的角色 将业务逻辑从界面中解耦.通常, 模型负责封装应用程 ... 
- Linux文件系统之目录清单
			挂载点:挂载:将设备关联到当前文件系统目录 文件系统:rootfs:根文件系统/boot:系统启动相关文件,如内核.initrd.以及grub(bootleader:引导加载器)/dev:设备文件, ... 
- smarty模板使用
			安装配置 下载smarty模板核心类库,把libs文件夹复制到项目文件夹下,修改为smarty在php文件中调用 require '../smarty/Smarty.class.php';$tpl = ... 
- c++中lambda表达式的用法
			#include <iostream> using namespace std; int main(){ ; auto func1 = [=](;}; auto func2 = [& ... 
