Socket
Socket
Sign inDemoInstall

@react-native-community/cli-config

Package Overview
Dependencies
6
Maintainers
30
Versions
114
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 13.5.0 to 13.5.1-alpha.0

9

build/loadConfig.js

@@ -59,2 +59,9 @@ "use strict";

}
const removeDuplicateCommands = commands => {
const uniqueCommandsMap = new Map();
commands.forEach(command => {
uniqueCommandsMap.set(command.name, command);
});
return Array.from(uniqueCommandsMap.values());
};

@@ -105,3 +112,3 @@ /**

}),
commands: [...acc.commands, ...config.commands],
commands: removeDuplicateCommands([...config.commands, ...acc.commands]),
platforms: {

@@ -108,0 +115,0 @@ ...acc.platforms,

8

package.json
{
"name": "@react-native-community/cli-config",
"version": "13.5.0",
"version": "13.5.1-alpha.0",
"license": "MIT",

@@ -11,3 +11,3 @@ "main": "build/index.js",

"dependencies": {
"@react-native-community/cli-tools": "13.5.0",
"@react-native-community/cli-tools": "13.5.1-alpha.0",
"chalk": "^4.1.2",

@@ -25,3 +25,3 @@ "cosmiconfig": "^5.1.0",

"devDependencies": {
"@react-native-community/cli-types": "13.5.0",
"@react-native-community/cli-types": "13.5.1-alpha.0",
"@types/cosmiconfig": "^5.0.3",

@@ -36,3 +36,3 @@ "@types/glob": "^7.1.1"

},
"gitHead": "092c37cf27ebbf019e710f8aa118f673066f273c"
"gitHead": "f50cc16bce038808680f55c10d659b94215f1a71"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc