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

buster-cli

Package Overview
Dependencies
Maintainers
4
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buster-cli - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

6

package.json
{
"name": "buster-cli",
"version": "0.7.0",
"version": "0.8.0",
"description": "Internal wrapper and util for creating CLIs in the buster project.",

@@ -48,4 +48,4 @@ "author": {

"stream-logger": "1.x",
"buster-configuration": "0.7.x",
"rimraf": "1.x",
"buster-configuration": "0.8.x",
"rimraf": "2.x",
"minimatch": "3.x"

@@ -52,0 +52,0 @@ },

@@ -10,2 +10,6 @@ # buster-cli

**0.8.0** (2015-Nov-25)
* updated some dependencies that weren't `npm publish`ed a week ago
**0.7.0** (2015-Nov-19)

@@ -12,0 +16,0 @@

@@ -317,7 +317,10 @@ var buster = require("buster-node");

setUp: function () {
cliHelper.cdFixtures();
this.cwd = cliHelper.cdFixtures();
this.cli.addConfigOption("seaman");
},
tearDown: cliHelper.clearFixtures,
tearDown: function (done) {
process.chdir(this.cwd);
cliHelper.clearFixtures(done);
},

@@ -324,0 +327,0 @@ "fails if config does not exist": function (done) {

@@ -34,21 +34,2 @@ var streamLogger = require("stream-logger");

mockLogger: function mockLogger(context) {
context.stdout = "";
context.stderr = "";
var cli = context.cli;
var level = cli.logger && cli.logger.level;
cli.logger = streamLogger({
write: function () {
context.stdout += join.call(arguments, " ");
}
}, {
write: function () {
context.stderr += join.call(arguments, " ");
}
});
if (level) { cli.logger.level = level; }
},
mkdir: function (dir) {

@@ -75,4 +56,6 @@ dir = dir.replace(FIXTURES_ROOT, "").replace(/^\//, "");

cdFixtures: function () {
var cwd = process.cwd();
this.mkdir("");
process.chdir(FIXTURES_ROOT);
return cwd;
},

@@ -79,0 +62,0 @@

Sorry, the diff of this file is not supported yet

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