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

@expo/eas-build-job

Package Overview
Dependencies
Maintainers
26
Versions
181
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/eas-build-job - npm Package Compare versions

Comparing version 1.0.57 to 1.0.59

12

dist/artifacts.d.ts

@@ -9,1 +9,13 @@ export declare enum ManagedArtifactType {

}
export declare enum GenericArtifactType {
ANDROID_APK = "android-apk",
ANDROID_AAB = "android-aab",
IOS_SIMULATOR_APP = "ios-simulator-app",
IOS_IPA = "ios-ipa",
UNKNOWN = "unknown"
}
export declare const isGenericArtifact: <TSpec extends {
type: GenericArtifactType | ManagedArtifactType;
}>(artifactSpec: TSpec) => artifactSpec is TSpec & {
type: GenericArtifactType;
};

17

dist/artifacts.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ManagedArtifactType = void 0;
exports.isGenericArtifact = exports.GenericArtifactType = exports.ManagedArtifactType = void 0;
var ManagedArtifactType;

@@ -13,2 +13,17 @@ (function (ManagedArtifactType) {

})(ManagedArtifactType || (exports.ManagedArtifactType = ManagedArtifactType = {}));
var GenericArtifactType;
(function (GenericArtifactType) {
GenericArtifactType["ANDROID_APK"] = "android-apk";
GenericArtifactType["ANDROID_AAB"] = "android-aab";
GenericArtifactType["IOS_SIMULATOR_APP"] = "ios-simulator-app";
GenericArtifactType["IOS_IPA"] = "ios-ipa";
GenericArtifactType["UNKNOWN"] = "unknown";
})(GenericArtifactType || (exports.GenericArtifactType = GenericArtifactType = {}));
const isGenericArtifact = (artifactSpec) => {
if (Object.values(GenericArtifactType).includes(artifactSpec.type)) {
return true;
}
return false;
};
exports.isGenericArtifact = isGenericArtifact;
//# sourceMappingURL=artifacts.js.map

4

package.json
{
"name": "@expo/eas-build-job",
"version": "1.0.57",
"version": "1.0.59",
"main": "dist/index.js",

@@ -36,3 +36,3 @@ "types": "dist/index.d.ts",

},
"gitHead": "7304accf0b3da5670d1cacf8777db04a3bf16a91"
"gitHead": "742ce93d5991b29ca6ce450b109899f70fd8bcc3"
}

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