Home
last modified time | relevance | path

Searched refs:TaskArgs (Results 1 – 25 of 29) sorted by relevance

12

/expo/tools/src/commands/
H A DPromotePackages.ts6 import { CommandOptions, TaskArgs } from '../promote-packages/types';
52 const taskRunner = new TaskRunner<TaskArgs>({
63 function tasksForOptions(options: CommandOptions): Task<TaskArgs>[] {
H A DPublishPackages.ts19 import { CommandOptions, Parcel, TaskArgs, PublishBackupData } from '../publish-packages/types';
116 const taskRunner = new TaskRunner<TaskArgs, PublishBackupData>({
199 function tasksForOptions(options: CommandOptions): Task<TaskArgs>[] {
/expo/tools/src/promote-packages/tasks/
H A DfindPackagesToPromote.ts5 import { CommandOptions, Parcel, TaskArgs } from '../types';
10 export const findPackagesToPromote = new Task<TaskArgs>(
14 async (parcels: Parcel[], options: CommandOptions): Promise<symbol | TaskArgs> => {
H A DlistPackagesToPromote.ts6 import { CommandOptions, Parcel, TaskArgs } from '../types';
15 export const listPackagesToPromote = new Task<TaskArgs>(
H A DprepareParcels.ts5 import { CommandOptions, Parcel, TaskArgs } from '../types';
11 export const prepareParcels = new Task<TaskArgs>(
H A DselectPackagesToPromote.ts9 import { CommandOptions, Parcel, TaskArgs } from '../types';
18 export const selectPackagesToPromote = new Task<TaskArgs>(
23 async (parcels: Parcel[], options: CommandOptions): Promise<void | TaskArgs> => {
H A DpromotePackages.ts7 import { CommandOptions, Parcel, TaskArgs } from '../types';
17 export const promotePackages = new Task<TaskArgs>(
/expo/tools/src/publish-packages/tasks/
H A DlistUnpublished.ts4 import { Parcel, TaskArgs } from '../types';
10 export const listUnpublished = new Task<TaskArgs>(
H A DpushCommittedChanges.ts4 import { CommandOptions, Parcel, TaskArgs } from '../types';
10 export const pushCommittedChanges = new Task<TaskArgs>(
H A DcheckEnvironmentTask.ts6 import { TaskArgs } from '../types';
13 export const checkEnvironmentTask = new Task<TaskArgs>(
H A DupdatePackageVersions.ts7 import { Parcel, TaskArgs } from '../types';
15 export const updatePackageVersions = new Task<TaskArgs>(
H A DupdateAndroidProjects.ts9 import { Parcel, TaskArgs } from '../types';
17 export const updateAndroidProjects = new Task<TaskArgs>(
H A DcutOffChangelogs.ts5 import { Parcel, TaskArgs } from '../types';
14 export const cutOffChangelogs = new Task<TaskArgs>(
H A DcommitStagedChanges.ts6 import { CommandOptions, Parcel, TaskArgs } from '../types';
14 export const commitStagedChanges = new Task<TaskArgs>(
H A DpublishPackagesPipeline.ts5 import { CommandOptions, Parcel, TaskArgs } from '../types';
30 export const publishPackagesPipeline = new Task<TaskArgs>(
H A DupdateBundledNativeModulesFile.ts8 import { Parcel, TaskArgs } from '../types';
17 export const updateBundledNativeModulesFile = new Task<TaskArgs>(
H A DpublishPackages.ts9 import { CommandOptions, Parcel, TaskArgs } from '../types';
17 export const publishPackages = new Task<TaskArgs>(
H A DupdateIosProjects.ts9 import { Parcel, TaskArgs } from '../types';
17 export const updateIosProjects = new Task<TaskArgs>(
H A DgrantTeamAccessToPackages.ts6 import { CommandOptions, Parcel, TaskArgs } from '../types';
15 export const grantTeamAccessToPackages = new Task<TaskArgs>(
H A DcheckRepositoryStatus.ts7 import { CommandOptions, Parcel, TaskArgs } from '../types';
14 export const checkRepositoryStatus = new Task<TaskArgs>(
H A DupdateModuleTemplate.ts8 import { Parcel, TaskArgs } from '../types';
19 export const updateModuleTemplate = new Task<TaskArgs>(
H A DcheckPackagesIntegrity.ts7 import { CommandOptions, Parcel, TaskArgs } from '../types';
19 export const checkPackagesIntegrity = new Task<TaskArgs>(
H A DupdateWorkspaceProjects.ts10 import { Parcel, TaskArgs } from '../types';
17 export const updateWorkspaceProjects = new Task<TaskArgs>(
H A DaddPublishedLabelToPullRequests.ts10 import { Parcel, TaskArgs } from '../types';
21 export const addPublishedLabelToPullRequests = new Task<TaskArgs>(
/expo/tools/src/promote-packages/
H A Dtypes.ts28 export type TaskArgs = [Parcel[], CommandOptions]; alias

12