Socket
Socket
Sign inDemoInstall

appcenter-link-scripts

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appcenter-link-scripts - npm Package Compare versions

Comparing version 2.3.0 to 2.4.0

26

package.json
{
"name": "appcenter-link-scripts",
"version": "2.3.0",
"version": "2.4.0",
"description": "Node module that contains common functionality needed to link appcenter-* modules",

@@ -21,16 +21,16 @@ "main": "src/index.js",

"dependencies": {
"debug": "^2.2.0",
"glob": "^5.0.15",
"mkdirp": "^0.5.1",
"plist": "^3.0.1",
"which": "^1.2.11",
"xcode": "^2.0.0"
"debug": "2.2.0",
"glob": "5.0.15",
"mkdirp": "0.5.1",
"plist": "3.0.1",
"which": "1.2.11",
"xcode": "2.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.1"
"babel-eslint": "7.2.3",
"eslint": "4.5.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.2.1"
},

@@ -37,0 +37,0 @@ "scripts": {

@@ -78,3 +78,3 @@ // Copyright (c) Microsoft Corporation. All rights reserved.

pods.forEach((pod) => {
podFile.addPodLine(pod.pod, pod.podspec, pod.version);
podFile.addPodLine(pod.pod, pod.version);
});

@@ -81,0 +81,0 @@ podFile.eraseOldLines();

@@ -23,10 +23,5 @@ // Copyright (c) Microsoft Corporation. All rights reserved.

Podfile.prototype.addPodLine = function (pod, podspec, version) {
debug(`addPodLine pod=${pod} podspec=${podspec} version=${version}`);
let line = `pod '${pod}'`;
if (podspec) {
line = `${line}, :podspec => '${podspec}'`;
} else if (version) {
line = `${line}, '~> ${version}'`;
}
Podfile.prototype.addPodLine = function (pod, version) {
debug(`addPodLine pod=${pod} version=${version}`);
const line = `pod '${pod}', '~> ${version}'`;
const podLinePattern = new RegExp(`pod\\s+'${pod}'.*`);

@@ -33,0 +28,0 @@ const existingLines = this.fileContents.match(podLinePattern);

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