screwdriver-executor-base
Advanced tools
Comparing version 0.0.2 to 0.0.3
12
index.js
@@ -46,4 +46,16 @@ 'use strict'; | ||
} | ||
/** | ||
* Stream logs | ||
* @method stream | ||
* @param {Object} config Configuration | ||
* @param {String} config.buildId Build id | ||
* @param {Response} config.stream Response object to stream logs to | ||
*/ | ||
stream() { | ||
console.error('stream is not implemented'); | ||
throw new Error('not implemented'); | ||
} | ||
} | ||
module.exports = Executor; |
{ | ||
"name": "screwdriver-executor-base", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Base class defining the interface for executor implementations", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -23,2 +23,3 @@ 'use strict'; | ||
assert.throws(instance.stop, Error, 'not implemented'); | ||
assert.throws(instance.stream, Error, 'not implemented'); | ||
}); | ||
@@ -25,0 +26,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
9814
94
0