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

@eclipse-che/plugin-registry-generator

Package Overview
Dependencies
Maintainers
5
Versions
627
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eclipse-che/plugin-registry-generator - npm Package Compare versions

Comparing version 7.36.1 to 7.36.2

lib/tests/_data/meta/che-theia-meta-with-multiple-volumes.yaml

3

lib/devfile/meta-yaml-to-devfile-yaml.js

@@ -132,2 +132,5 @@ "use strict";

}
components = components.filter(function (item, pos, self) {
return self.findIndex(value => value.name === item.name) === pos;
});
devfileYaml.components = components;

@@ -134,0 +137,0 @@ return devfileYaml;

2

package.json
{
"name": "@eclipse-che/plugin-registry-generator",
"version": "7.36.1",
"version": "7.36.2",
"description": "Generator of yaml files exposed by the plug-in registry.",

@@ -5,0 +5,0 @@ "main": "lib/entrypoint.js",

@@ -182,2 +182,10 @@ /**********************************************************************

}
// remove duplicated components, e.g. plugins
// container and init container may provide two volumes with the same name
// and it is enough to have in components list only one volume definition
components = components.filter(function (item, pos, self) {
return self.findIndex(value => value.name === item.name) === pos;
});
devfileYaml.components = components;

@@ -184,0 +192,0 @@ return devfileYaml;

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