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

@expo/eas-build-job

Package Overview
Dependencies
Maintainers
24
Versions
179
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/eas-build-job

  • 0.2.14
  • npm
  • Socket score

Version published
Maintainers
24
Created

What is @expo/eas-build-job?

@expo/eas-build-job is a package designed to facilitate the creation and management of build jobs for Expo applications using the Expo Application Services (EAS). It provides tools and utilities to define, configure, and execute build jobs for different platforms, such as iOS and Android, in a streamlined and efficient manner.

What are @expo/eas-build-job's main functionalities?

Creating a Build Job

This feature allows you to create a build job for an iOS project. You can specify the type of job, the platform, the root directory of the project, and the build profile to use.

{
  "type": "eas-build-job",
  "platform": "ios",
  "projectRootDirectory": "./",
  "buildProfile": "production"
}

Configuring Build Credentials

This feature allows you to configure build credentials for an Android project. You can specify the keystore information required for signing the APK.

{
  "type": "eas-build-job",
  "platform": "android",
  "projectRootDirectory": "./",
  "buildProfile": "production",
  "credentials": {
    "keystore": {
      "dataBase64": "<base64-encoded-keystore>",
      "keystorePassword": "<keystore-password>",
      "keyAlias": "<key-alias>",
      "keyPassword": "<key-password>"
    }
  }
}

Running a Build Job

This feature allows you to run a build job programmatically. You can define the build job configuration and use the `runBuildJob` function to execute it, handling the result or any errors that occur.

const { runBuildJob } = require('@expo/eas-build-job');

const buildJob = {
  type: 'eas-build-job',
  platform: 'ios',
  projectRootDirectory: './',
  buildProfile: 'production'
};

runBuildJob(buildJob).then(result => {
  console.log('Build completed:', result);
}).catch(error => {
  console.error('Build failed:', error);
});

Other packages similar to @expo/eas-build-job

FAQs

Package last updated on 24 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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