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

depsync

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

depsync - npm Package Compare versions

Comparing version 1.1.4 to 1.1.5

2

package.json
{
"name": "depsync",
"version": "1.1.4",
"version": "1.1.5",
"author": "Dom Chen",

@@ -5,0 +5,0 @@ "homepage": "http://www.idom.me/",

@@ -46,9 +46,11 @@ //////////////////////////////////////////////////////////////////////////////////////

this.password = process.env["GIT_PASSWORD"];
if (!this.username || !this.password) {
let domainName = process.env["DomainName"];
let domainName = process.env["DomainName"];
if ((!this.username || !this.password) && domainName) {
let list = domainName.split("@");
if (list.length === 2) {
list = list[0].split(":");
this.username = list[0];
this.password = list[1];
if (list.length === 2) {
this.username = list[0];
this.password = list[1];
}
}

@@ -55,0 +57,0 @@ }

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