New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-teamcity-reporter

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-teamcity-reporter

Gulp reporter to display task messages in a TeamCity format

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
94
decreased by-12.15%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-teamcity-reporter

Build Status NPM version Dependency Status devDependency Status

Install

$ npm install --save-dev gulp-teamcity-reporter

Usage

require('gulp-teamcity-reporter').wireTaskEvents(options);

Options

const options = {
  sendTaskDuration: true, //send buildStatisticValue of task run time, by default false
  ignoreContext: true     //force TeamCity output, even if env vars are not detected
}

sendTaskDuration

Type: boolean
Default: false

Set it to true to send buildStatisticValue output of the task run time in milliseconds.

ignoreContext

Type: boolean
Default: false

Set it to true to force TeamCity-formated output, even if a TeamCity execution context was not detected.

API

wireTaskEvents([options])

Wire TeamCity-formatted logging into Gulp's events for task start, stop, and error.

teamCityReporter.wireTaskEvents(options);

error([options])

Wire TeamCity-formatted logging into any stream's error event.

src('./src/somefiles.js')
   .pipe(somePlugin().on('error', teamCityReporter.error(options)));
   .pipe(dest('./output'));

License

BSD-3-Clause © Arana Software

Keywords

FAQs

Package last updated on 13 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc