Socket
Socket
Sign inDemoInstall

yarn-upgrade-all

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.7.1 to 0.7.2

3

build/index.js

@@ -48,3 +48,4 @@ #!/usr/bin/env node

}
var deps = Object.keys(packageJson[depType]).filter(function (dep) { return !ignorePkgs.has(dep); });
var deps = Object.keys(packageJson[depType]).filter(function (dep) { return !ignorePkgs.has(dep); })
.filter(function (dep) { return !packageJson[depType][dep].startsWith('file:'); });
if (deps.length === 0) {

@@ -51,0 +52,0 @@ return;

{
"name": "yarn-upgrade-all",
"version": "0.7.1",
"version": "0.7.2",
"description": "This is a command line utility program to upgrade all the packages in your package.json to the latest version (potentially upgrading packages across major versions).",

@@ -24,12 +24,12 @@ "bin": {

"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-plugin-import": "^2.25.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}

@@ -46,3 +46,4 @@ #!/usr/bin/env node

}
const deps = Object.keys(packageJson[depType]).filter((dep) => !ignorePkgs.has(dep));
const deps = Object.keys(packageJson[depType]).filter((dep) => !ignorePkgs.has(dep))
.filter((dep) => !packageJson[depType][dep].startsWith('file:'));
if (deps.length === 0) {

@@ -49,0 +50,0 @@ return;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc