| /expo/tools/src/commands/ |
| H A D | PromotePackages.ts | 6 import { CommandOptions, TaskArgs } from '../promote-packages/types'; 52 const taskRunner = new TaskRunner<TaskArgs>({ 63 function tasksForOptions(options: CommandOptions): Task<TaskArgs>[] {
|
| H A D | PublishPackages.ts | 19 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 D | findPackagesToPromote.ts | 5 import { CommandOptions, Parcel, TaskArgs } from '../types'; 10 export const findPackagesToPromote = new Task<TaskArgs>( 14 async (parcels: Parcel[], options: CommandOptions): Promise<symbol | TaskArgs> => {
|
| H A D | listPackagesToPromote.ts | 6 import { CommandOptions, Parcel, TaskArgs } from '../types'; 15 export const listPackagesToPromote = new Task<TaskArgs>(
|
| H A D | prepareParcels.ts | 5 import { CommandOptions, Parcel, TaskArgs } from '../types'; 11 export const prepareParcels = new Task<TaskArgs>(
|
| H A D | selectPackagesToPromote.ts | 9 import { CommandOptions, Parcel, TaskArgs } from '../types'; 18 export const selectPackagesToPromote = new Task<TaskArgs>( 23 async (parcels: Parcel[], options: CommandOptions): Promise<void | TaskArgs> => {
|
| H A D | promotePackages.ts | 7 import { CommandOptions, Parcel, TaskArgs } from '../types'; 17 export const promotePackages = new Task<TaskArgs>(
|
| /expo/tools/src/publish-packages/tasks/ |
| H A D | listUnpublished.ts | 4 import { Parcel, TaskArgs } from '../types'; 10 export const listUnpublished = new Task<TaskArgs>(
|
| H A D | pushCommittedChanges.ts | 4 import { CommandOptions, Parcel, TaskArgs } from '../types'; 10 export const pushCommittedChanges = new Task<TaskArgs>(
|
| H A D | checkEnvironmentTask.ts | 6 import { TaskArgs } from '../types'; 13 export const checkEnvironmentTask = new Task<TaskArgs>(
|
| H A D | updatePackageVersions.ts | 7 import { Parcel, TaskArgs } from '../types'; 15 export const updatePackageVersions = new Task<TaskArgs>(
|
| H A D | updateAndroidProjects.ts | 9 import { Parcel, TaskArgs } from '../types'; 17 export const updateAndroidProjects = new Task<TaskArgs>(
|
| H A D | cutOffChangelogs.ts | 5 import { Parcel, TaskArgs } from '../types'; 14 export const cutOffChangelogs = new Task<TaskArgs>(
|
| H A D | commitStagedChanges.ts | 6 import { CommandOptions, Parcel, TaskArgs } from '../types'; 14 export const commitStagedChanges = new Task<TaskArgs>(
|
| H A D | publishPackagesPipeline.ts | 5 import { CommandOptions, Parcel, TaskArgs } from '../types'; 30 export const publishPackagesPipeline = new Task<TaskArgs>(
|
| H A D | updateBundledNativeModulesFile.ts | 8 import { Parcel, TaskArgs } from '../types'; 17 export const updateBundledNativeModulesFile = new Task<TaskArgs>(
|
| H A D | publishPackages.ts | 9 import { CommandOptions, Parcel, TaskArgs } from '../types'; 17 export const publishPackages = new Task<TaskArgs>(
|
| H A D | updateIosProjects.ts | 9 import { Parcel, TaskArgs } from '../types'; 17 export const updateIosProjects = new Task<TaskArgs>(
|
| H A D | grantTeamAccessToPackages.ts | 6 import { CommandOptions, Parcel, TaskArgs } from '../types'; 15 export const grantTeamAccessToPackages = new Task<TaskArgs>(
|
| H A D | checkRepositoryStatus.ts | 7 import { CommandOptions, Parcel, TaskArgs } from '../types'; 14 export const checkRepositoryStatus = new Task<TaskArgs>(
|
| H A D | updateModuleTemplate.ts | 8 import { Parcel, TaskArgs } from '../types'; 19 export const updateModuleTemplate = new Task<TaskArgs>(
|
| H A D | checkPackagesIntegrity.ts | 7 import { CommandOptions, Parcel, TaskArgs } from '../types'; 19 export const checkPackagesIntegrity = new Task<TaskArgs>(
|
| H A D | updateWorkspaceProjects.ts | 10 import { Parcel, TaskArgs } from '../types'; 17 export const updateWorkspaceProjects = new Task<TaskArgs>(
|
| H A D | addPublishedLabelToPullRequests.ts | 10 import { Parcel, TaskArgs } from '../types'; 21 export const addPublishedLabelToPullRequests = new Task<TaskArgs>(
|
| /expo/tools/src/promote-packages/ |
| H A D | types.ts | 28 export type TaskArgs = [Parcel[], CommandOptions]; alias
|