Yarn start is hanging

Summary: Fixed hanging on "yarn start"

Reviewed By: passy, cekkaewnumchai

Differential Revision: D20158451

fbshipit-source-id: 0aa834e33ce622cc264005d0648546608f208d07
This commit is contained in:
Anton Nikolaev
2020-02-28 04:06:25 -08:00
committed by Facebook Github Bot
parent 74e1376089
commit 58225fe113
7 changed files with 47 additions and 45 deletions

View File

@@ -14,7 +14,7 @@ import JSONStream from 'JSONStream';
import {Transform} from 'stream';
import electron from 'electron';
import fs from 'fs';
import uuid from 'uuid/v1';
import {v1 as uuid} from 'uuid';
import path from 'path';
import {promisify} from 'util';
import {exec} from 'child_process';

View File

@@ -8,7 +8,7 @@
*/
import {remote} from 'electron';
import uuidv1 from 'uuid/v1';
import {v1 as uuidv1} from 'uuid';
import {ReactElement} from 'react';
import CancellableExportStatus from '../chrome/CancellableExportStatus';
import {Actions} from './';