expo-dev-client 5.1.9-canary-20250701-6a945c5 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -10,15 +10,11 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
- ## 5.2.2 - 2025-06-26
13
+ ## 5.2.1 2025-06-18
14
14
 
15
15
  _This version does not introduce any user-facing changes._
16
16
 
17
- ## 5.2.1 - 2025-06-18
18
-
19
- _This version does not introduce any user-facing changes._
20
-
21
- ## 5.2.0 - 2025-06-04
17
+ ## 5.2.0 2025-06-04
22
18
 
23
19
  ### 💡 Others
24
20
 
@@ -8,13 +8,13 @@ expoModule {
8
8
  }
9
9
 
10
10
  group = "host.exp.exponent"
11
- version = "5.1.9-canary-20250701-6a945c5"
11
+ version = "5.2.1"
12
12
 
13
13
  android {
14
14
  namespace "expo.modules.devclient"
15
15
  defaultConfig {
16
16
  versionCode 1
17
- versionName "5.1.9-canary-20250701-6a945c5"
17
+ versionName "5.2.1"
18
18
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19
19
  }
20
20
 
@@ -1,2 +1,3 @@
1
+ export * from 'expo-dev-launcher';
1
2
  export * from 'expo-dev-menu';
2
3
  //# sourceMappingURL=DevClient.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DevClient.d.ts","sourceRoot":"","sources":["../src/DevClient.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"DevClient.d.ts","sourceRoot":"","sources":["../src/DevClient.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC"}
@@ -1,2 +1,3 @@
1
+ export * from 'expo-dev-launcher';
1
2
  export * from 'expo-dev-menu';
2
3
  //# sourceMappingURL=DevClient.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DevClient.js","sourceRoot":"","sources":["../src/DevClient.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC","sourcesContent":["export * from 'expo-dev-menu';\n"]}
1
+ {"version":3,"file":"DevClient.js","sourceRoot":"","sources":["../src/DevClient.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC","sourcesContent":["export * from 'expo-dev-launcher';\nexport * from 'expo-dev-menu';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-client",
3
- "version": "5.1.9-canary-20250701-6a945c5",
3
+ "version": "5.2.1",
4
4
  "description": "Expo Development Client",
5
5
  "main": "build/DevClient.js",
6
6
  "types": "build/DevClient.d.ts",
@@ -32,20 +32,21 @@
32
32
  "license": "MIT",
33
33
  "homepage": "https://docs.expo.dev/versions/latest/sdk/dev-client/",
34
34
  "dependencies": {
35
- "expo-dev-launcher": "5.2.0-canary-20250701-6a945c5",
36
- "expo-dev-menu": "6.2.0-canary-20250701-6a945c5",
37
- "expo-dev-menu-interface": "1.10.1-canary-20250701-6a945c5",
38
- "expo-manifests": "0.17.0-canary-20250701-6a945c5",
39
- "expo-updates-interface": "1.2.0-canary-20250701-6a945c5"
35
+ "expo-dev-launcher": "5.1.13",
36
+ "expo-dev-menu": "6.1.12",
37
+ "expo-dev-menu-interface": "1.10.0",
38
+ "expo-manifests": "~0.16.5",
39
+ "expo-updates-interface": "~1.1.0"
40
40
  },
41
41
  "devDependencies": {
42
- "expo-module-scripts": "4.1.9-canary-20250701-6a945c5",
43
- "expo-test-runner": "0.2.6-canary-20250701-6a945c5"
42
+ "expo-module-scripts": "^4.1.7",
43
+ "expo-test-runner": "0.2.5"
44
44
  },
45
45
  "peerDependencies": {
46
- "expo": "54.0.0-canary-20250701-6a945c5"
46
+ "expo": "*"
47
47
  },
48
48
  "jest": {
49
49
  "preset": "expo-module-scripts"
50
- }
50
+ },
51
+ "gitHead": "cc3b641cc2e4e7686dca75e7029cf76a07b3d647"
51
52
  }
@@ -1,4 +1,5 @@
1
- type DevClientPluginConfigType = {
1
+ import type { PluginConfigType } from 'expo-dev-launcher/plugin/build/pluginConfig';
2
+ type DevClientPluginConfigType = PluginConfigType & {
2
3
  addGeneratedScheme?: boolean;
3
4
  };
4
5
  declare const _default: import("expo/config-plugins").ConfigPlugin<DevClientPluginConfigType>;
@@ -5,12 +5,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const config_plugins_1 = require("expo/config-plugins");
7
7
  // @ts-expect-error missing types
8
- const app_plugin_1 = __importDefault(require("expo-dev-menu/app.plugin"));
8
+ const app_plugin_1 = __importDefault(require("expo-dev-launcher/app.plugin"));
9
+ // @ts-expect-error missing types
10
+ const app_plugin_2 = __importDefault(require("expo-dev-menu/app.plugin"));
9
11
  const withGeneratedAndroidScheme_1 = require("./withGeneratedAndroidScheme");
10
12
  const withGeneratedIosScheme_1 = require("./withGeneratedIosScheme");
11
13
  const pkg = require('expo-dev-client/package.json');
12
14
  function withDevClient(config, props) {
13
- config = (0, app_plugin_1.default)(config);
15
+ config = (0, app_plugin_2.default)(config);
16
+ config = (0, app_plugin_1.default)(config, props);
14
17
  const mySchemeProps = { addGeneratedScheme: true, ...props };
15
18
  if (mySchemeProps.addGeneratedScheme) {
16
19
  config = (0, withGeneratedAndroidScheme_1.withGeneratedAndroidScheme)(config);
@@ -1,6 +1,9 @@
1
1
  import type { ExpoConfig } from 'expo/config';
2
2
  import { createRunOncePlugin } from 'expo/config-plugins';
3
3
  // @ts-expect-error missing types
4
+ import withDevLauncher from 'expo-dev-launcher/app.plugin';
5
+ import type { PluginConfigType } from 'expo-dev-launcher/plugin/build/pluginConfig';
6
+ // @ts-expect-error missing types
4
7
  import withDevMenu from 'expo-dev-menu/app.plugin';
5
8
 
6
9
  import { withGeneratedAndroidScheme } from './withGeneratedAndroidScheme';
@@ -8,12 +11,13 @@ import { withGeneratedIosScheme } from './withGeneratedIosScheme';
8
11
 
9
12
  const pkg = require('expo-dev-client/package.json');
10
13
 
11
- type DevClientPluginConfigType = {
14
+ type DevClientPluginConfigType = PluginConfigType & {
12
15
  addGeneratedScheme?: boolean;
13
16
  };
14
17
 
15
18
  function withDevClient(config: ExpoConfig, props: DevClientPluginConfigType) {
16
19
  config = withDevMenu(config);
20
+ config = withDevLauncher(config, props);
17
21
 
18
22
  const mySchemeProps = { addGeneratedScheme: true, ...props };
19
23
 
package/src/DevClient.ts CHANGED
@@ -1 +1,2 @@
1
+ export * from 'expo-dev-launcher';
1
2
  export * from 'expo-dev-menu';