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

massive

Package Overview
Dependencies
Maintainers
1
Versions
117
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

massive - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

12

index.js

@@ -14,3 +14,4 @@ var Runner = require("./lib/runner");

var Massive = function(args){
this.scriptsDir = args.scripts || __dirname + "/db";
this.scriptsDir = args.scripts || process.cwd() + "/db";

@@ -93,5 +94,8 @@ var runner = new Runner(args.connectionString);

var walkSqlFiles = function(rootObject, rootDir){
var dirs = fs.readdirSync(rootDir);
var dirs;
try {
dirs = fs.readdirSync(rootDir);
} catch (ex) {
return;
}
//loop the directories found

@@ -98,0 +102,0 @@ _.each(dirs, function(item){

{
"name": "massive",
"version": "2.0.0",
"version": "2.0.1",
"description": "A small query tool for Postgres that embraces json and makes life simpler",

@@ -5,0 +5,0 @@ "main": "index.js",

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