Skip to content

Commit

Permalink
Fix uuid import syntax to use mandatory module syntax (#8114)
Browse files Browse the repository at this point in the history
* Fix uuid imort syntax to use mandatory module syntax

* Built expo constants files

* Added changelog message

* Update CHANGELOG.md

Co-authored-by: Bartłomiej Bukowski <bartlomiejbukowski.b@gmail.com>

Co-authored-by: Bartłomiej Bukowski <bartlomiejbukowski.b@gmail.com>
  • Loading branch information
actuallymentor and bbarthec committed May 5, 2020
1 parent b7ca629 commit cdbe704
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -18,6 +18,7 @@ This is the log of notable changes to the Expo client that are developer-facing.

### 🐛 Bug fixes

- Fixed `uuid`'s deprecation of deep requiring ([#8114](https://github.com/expo/expo/pull/8114) by [@actuallymentor](https://github.com/actuallymentor))
- Fixed multiplied callbacks in `expo-av` after replaying ([#7193](https://github.com/expo/expo/pull/7193) by [@mczernek](https://github.com/mczernek))
- Fixed `Brightness.requestPermissionsAsync` throwing `permission cannot be null or empty` error on Android. ([#7276](https://github.com/expo/expo/pull/7276) by [@lukmccall](https://github.com/lukmccall))
- Fixed `KeepAwake.activateKeepAwake` not working with multiple tags on Android. ([#7197](https://github.com/expo/expo/pull/7197) by [@lukmccall](https://github.com/lukmccall))
Expand Down
2 changes: 1 addition & 1 deletion packages/expo-constants/build/ExponentConstants.web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/expo-constants/build/ExponentConstants.web.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/expo-constants/src/ExponentConstants.web.ts
@@ -1,5 +1,5 @@
import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment';
import uuidv4 from 'uuid/v4';
import { v4 as uuidv4 } from 'uuid';

import { NativeConstants, PlatformManifest, WebManifest } from './Constants.types';

Expand Down

0 comments on commit cdbe704

Please sign in to comment.