Socket
Socket
Sign inDemoInstall

expo-dev-launcher

Package Overview
Dependencies
Maintainers
24
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-dev-launcher - npm Package Compare versions

Comparing version 0.6.4 to 0.6.5

7

CHANGELOG.md

@@ -13,2 +13,9 @@ # Changelog

## 0.6.5 — 2021-07-16
### 🐛 Bug fixes
- Fixed compatibility with React Native 0.64.X. ([#13632](https://github.com/expo/expo/pull/13632) by [@lukmccall](https://github.com/lukmccall))
- Updated plugin to only initialize UpdatesDevLauncherController in debug builds. ([#13597](https://github.com/expo/expo/pull/13597) by [@esamelson](https://github.com/esamelson))
## 0.6.4 — 2021-07-08

@@ -15,0 +22,0 @@

6

package.json
{
"name": "expo-dev-launcher",
"title": "Expo Development Launcher",
"version": "0.6.4",
"version": "0.6.5",
"description": "Pre-release version of the Expo development launcher package for testing.",

@@ -36,3 +36,3 @@ "main": "build/DevLauncher.js",

"devDependencies": {
"babel-preset-expo": "~8.4.0",
"babel-preset-expo": "~8.4.1",
"expo-module-scripts": "^2.0.0",

@@ -42,3 +42,3 @@ "react": "16.13.1",

},
"gitHead": "73b0dad6e353ddb37b0df3cf26973234e46a4ffe"
"gitHead": "4b7e2ecc9e403ce95eb03fdbb8c062eb60749a37"
}

@@ -26,3 +26,5 @@ "use strict";

const DEV_LAUNCHER_ANDROID_INIT = 'DevLauncherController.initialize(this, getReactNativeHost());';
const DEV_LAUNCHER_UPDATES_ANDROID_INIT = 'DevLauncherController.getInstance().setUpdatesInterface(UpdatesDevLauncherController.initialize(this));';
const DEV_LAUNCHER_UPDATES_ANDROID_INIT = `if (BuildConfig.DEBUG) {
DevLauncherController.getInstance().setUpdatesInterface(UpdatesDevLauncherController.initialize(this));
}`;
const DEV_LAUNCHER_UPDATES_DEVELOPER_SUPPORT = 'return DevLauncherController.getInstance().getUseDeveloperSupport();';

@@ -29,0 +31,0 @@ const DEV_LAUNCHER_JS_REGISTER_ERROR_HANDLERS = `import 'expo-dev-client';`;

@@ -32,4 +32,5 @@ import {

const DEV_LAUNCHER_ANDROID_INIT = 'DevLauncherController.initialize(this, getReactNativeHost());';
const DEV_LAUNCHER_UPDATES_ANDROID_INIT =
'DevLauncherController.getInstance().setUpdatesInterface(UpdatesDevLauncherController.initialize(this));';
const DEV_LAUNCHER_UPDATES_ANDROID_INIT = `if (BuildConfig.DEBUG) {
DevLauncherController.getInstance().setUpdatesInterface(UpdatesDevLauncherController.initialize(this));
}`;
const DEV_LAUNCHER_UPDATES_DEVELOPER_SUPPORT =

@@ -36,0 +37,0 @@ 'return DevLauncherController.getInstance().getUseDeveloperSupport();';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc