Skip to main content

Script Task Configuration (script)

Execute custom JS script

The script task type allows you to evaluate JS scripts to have full control over the task flow.

Task Properties

PropertyTypeDescription
task"script", requiredSpecifies the task type, which should be set to "prompt" for this task.
namestringAn optional name for the task. If provided, the task state will be saved as a variable. Visit Task and Action States page to learn more.
labelstringAn optional label or description for the task.
whenobjectVisit Conditional Tasks and Actions page to learn how to execute task conditionally.
actionsArray<Action>, requiredAn array of action items that define the modifications to be made in the file.

Action Properties

PropertyTypeDescription
namestringAn optional name for the task. If provided, the task state will be saved as a variable. Visit Task and Action States page to learn more.
whenobjectVisit Conditional Tasks and Actions page to learn how to execute action conditionally.
scriptstringThe script to be executed.
modulestringThe module file to run. Your module should export a function with a single context parameter. Context parameter contains all supported task actions.

Example

Here's an example of how to use prompts in a configuration file:

steps:
- task: script
actions:
- script: |-
if (get('some-task') == 'done')
set('run_app_delegate', true);
- task: app_delegate
when:
run_app_delegate: true

In this example:

  • We evaluate a script to check if some-task was run with success and define run_app_delegate variable.
  • app_delegate task will run if run_app_delegate is true.

You can also call any task in a script:

steps:
- task: script
actions:
- script: |-
await app_delegate({
prepend: 'some import'
});

Or run your custom plugin module:

steps:
- task: script
actions:
- module: 'plugin/integrate.js';

plugin/integrate.js

module.exports = async function integrate(ctx) {
await ctx.app_delegate({
prepend: 'some import'
});
}

Typescript

You can add react-native-integrate as dev dependency and use ModuleContext type for TS. Note that you need to transpile your plugin to CommonJS before shipping.

plugin/integrate.ts

import { ModuleContext } from "react-native-integrate";

export default async function integrate(ctx: ModuleContext) {
await ctx.app_delegate({
prepend: 'some import'
});
}