Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
[expo-cli] fix importing md5-file
Browse files Browse the repository at this point in the history
  • Loading branch information
dsokal committed Jun 3, 2020
1 parent 39a705a commit f875c67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/expo-cli/src/commands/build-native/Builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ApiV2, FormData, User } from '@expo/xdl';
import axios from 'axios';
import concat from 'concat-stream';
import fs from 'fs-extra';
import md5File from 'md5-file/promise';
import md5File from 'md5-file';
import ora from 'ora';
import { v4 as uuid } from 'uuid';

Expand Down
2 changes: 1 addition & 1 deletion packages/expo-cli/src/uploads.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Readable } from 'stream';

import { ApiV2, FormData, UserManager } from '@expo/xdl';
import got, { Progress } from 'got';
import md5File from 'md5-file/promise';
import md5File from 'md5-file';

enum UploadType {
TURTLE_PROJECT_SOURCES = 'turtle-project-sources',
Expand Down

0 comments on commit f875c67

Please sign in to comment.