Home
last modified time | relevance | path

Searched refs:backupFilePath (Results 1 – 2 of 2) sorted by relevance

/expo/tools/src/
H A DTasksRunner.ts48 backupFilePath?: string | null;
100 readonly backupFilePath: string | null = null; property in TaskRunner
138 if (!this.backupFilePath) {
142 await fs.access(this.backupFilePath, fs.constants.R_OK);
153 if (!this.backupFilePath || !(await this.backupExistsAsync())) {
156 const backup = await JsonFile.readAsync<TasksRunnerBackup<BackupDataType>>(this.backupFilePath);
185 if (!this.backupFilePath) {
197 await fs.outputFile(this.backupFilePath, JSON.stringify(backup, null, 2));
204 if (this.backupFilePath) {
205 fs.removeSync(this.backupFilePath);
/expo/tools/src/commands/
H A DPublishPackages.ts118 backupFilePath: BACKUP_PATH,