当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript colors.grey方法代码示例

本文整理汇总了TypeScript中gulp-util.colors.grey方法的典型用法代码示例。如果您正苦于以下问题:TypeScript colors.grey方法的具体用法?TypeScript colors.grey怎么用?TypeScript colors.grey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gulp-util.colors的用法示例。


在下文中一共展示了colors.grey方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

	}, function () {
		if (log) {
			if (entry.totalCount === 1) {
				util.log(`Stats for '${util.colors.grey(entry.name)}': ${Math.round(entry.totalSize / 1204)}KB`);

			} else {
				const count = entry.totalCount < 100
					? util.colors.green(entry.totalCount.toString())
					: util.colors.red(entry.totalCount.toString());

				util.log(`Stats for '${util.colors.grey(entry.name)}': ${count} files, ${Math.round(entry.totalSize / 1204)}KB`);
			}
		}

		this.emit('end');
	});
开发者ID:DonJayamanne,项目名称:vscode,代码行数:16,代码来源:stats.ts

示例2: toString

	toString(pretty?: boolean): string {
		if (!pretty) {
			if (this.totalCount === 1) {
				return `${this.name}: ${this.totalSize} bytes`;
			} else {
				return `${this.name}: ${this.totalCount} files with ${this.totalSize} bytes`;
			}
		} else {
			if (this.totalCount === 1) {
				return `Stats for '${util.colors.grey(this.name)}': ${Math.round(this.totalSize / 1204)}KB`;

			} else {
				const count = this.totalCount < 100
					? util.colors.green(this.totalCount.toString())
					: util.colors.red(this.totalCount.toString());

				return `Stats for '${util.colors.grey(this.name)}': ${count} files, ${Math.round(this.totalSize / 1204)}KB`;
			}
		}
	}
开发者ID:DonJayamanne,项目名称:vscode,代码行数:20,代码来源:stats.ts

示例3: outputLine

function outputLine(line: string) {
  const prefix = gutil.colors.cyan("setup.py:")
  gutil.log(`${prefix} ${gutil.colors.grey(line)}`)
}
开发者ID:alamont,项目名称:bokeh,代码行数:4,代码来源:install.ts


注:本文中的gulp-util.colors.grey方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。