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

git-pwa

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-pwa - npm Package Compare versions

Comparing version

to
1.0.9

2

package.json
{
"name": "git-pwa",
"version": "1.0.8",
"version": "1.0.9",
"description": "git to use in a progressive web app",

@@ -5,0 +5,0 @@ "bin": {

@@ -101,7 +101,6 @@ import fs from 'fs';

}
if (filelist.length > 2) {
return filelist.join('\n');
} else {
return 'working folder up to date';
if (filelist.length <= 2) {
filelist.push('working folder up to date');
}
return filelist.join('\n');
}

@@ -108,0 +107,0 @@ },