Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bigstraw

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bigstraw - npm Package Compare versions

Comparing version 1.0.2 to 1.1.0

coloncolon.json

18

index.js

@@ -25,2 +25,5 @@ /**

// githubname::checkoutname
var SPLIT = '::';
// global array of clone/update failures

@@ -75,2 +78,11 @@ // report these at the end

function githubToCheckout(repo) {
var parts = repo.split(SPLIT);
if (parts.length === 1) {
parts[1] = parts[0];
}
// [githubName, checkoutName]
return parts;
}
function cloneOrUpdate(repo, callback) {

@@ -137,3 +149,4 @@ fs.exists(repo.to, function(result) {

'--recurse',
ACCESS + 'github.com/' + repo.from
ACCESS + 'github.com/' + repo.from,
path.basename(repo.to)
];

@@ -169,3 +182,4 @@ if (options.branch) {

folders[conf.dir] = 1;
repos.push({from: conf.org + '/' + r + '.git', to: path.join(conf.dir, r)});
var repoNames = githubToCheckout(r);
repos.push({from: conf.org + '/' + repoNames[0] + '.git', to: path.join(conf.dir, repoNames[1])});
});

@@ -172,0 +186,0 @@ });

6

package.json
{
"name": "bigstraw",
"version": "1.0.2",
"version": "1.1.0",
"description": "Get a bunch of git resources, fast",

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

"dependencies": {
"async": "^0.8.0",
"async": "^0.9.0",
"colors": "^0.6.2",
"nopt": "^2.2.1"
"nopt": "^3.0.0"
},

@@ -17,0 +17,0 @@ "devDependencies": {},

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