本文整理汇总了TypeScript中grunt.log.error方法的典型用法代码示例。如果您正苦于以下问题:TypeScript log.error方法的具体用法?TypeScript log.error怎么用?TypeScript log.error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类grunt.log
的用法示例。
在下文中一共展示了log.error方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: taskFunction
export function taskFunction (this: grunt.task.ITask): void {
let done = this.async()
let options = this.options<SockoOptionsInterface>({
input: null,
output: null,
node: null,
ignores: [],
renames: [],
skipIdenticalSockets: false,
clean: false,
hierarchy: null,
ignoreMissing: false
})
if (!options.input) {
grunt.log.error('Please specify an fileInput directory')
done(false)
}
if (!options.output) {
grunt.log.error('Please specify an output directory')
done(false)
}
if (!options.node) {
grunt.log.error('Please specify a node')
done(false)
}
let runner = new SockoRunner(options)
runner.run()
.catch(
(error) => {
grunt.log.error(error.message)
done(false)
}
)
.then(
() => {
done()
}
)
}
示例2: done
(error) => {
grunt.log.error(error.message)
done(false)
}