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

Commit

Permalink
Remove deprecated property "xde" from the manifest (#3366)
Browse files Browse the repository at this point in the history
* Remove deprecated property "xde" from the manifest

This property has been deprecated since 2018 and its use in the SDK was removed here:
expo/expo@2807b09

* Update CHANGELOG
  • Loading branch information
fson committed Apr 8, 2021
1 parent d4a4427 commit c63aaf4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This is the log of notable changes to Expo CLI and related packages.

### 🛠 Breaking changes

- Remove deprecated property `xde` from the manifest ([#3366](https://github.com/expo/expo-cli/pull/3366))

### 🎉 New features

### 🧹 Chores
Expand Down Expand Up @@ -288,7 +290,7 @@ This is the log of notable changes to Expo CLI and related packages.

### 📦 Packages updated

- @expo/config-plugins@1.0.18
- @expo/config-plugins@1.0.18
- @expo/config@3.3.28
- @expo/dev-server@0.1.54
- @expo/dev-tools@0.13.82
Expand Down
1 change: 0 additions & 1 deletion packages/config/src/Config.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export type ExpoAppManifest = ExpoConfig & {
sdkVersion: string;
bundledAssets?: string[];
isKernel?: boolean;
xde?: boolean;
kernel?: { androidManifestPath?: string; iosManifestPath?: string };
assetUrlOverride?: string;
publishedTime?: string;
Expand Down
1 change: 0 additions & 1 deletion packages/webpack-config/src/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ export default async function (
// TODO(Bacon): Move to expo/config - manifest code from XDL Project
const publicConfig = {
...config,
xde: true,
developer: {
tool: 'expo-cli',
projectRoot: env.projectRoot,
Expand Down
1 change: 0 additions & 1 deletion packages/xdl/src/start/ManifestHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ export async function getManifestResponseAsync({
const hostInfo = await createHostInfoAsync();
const [projectSettings, bundleUrlPackagerOpts] = await getPackagerOptionsAsync(projectRoot);
// Mutate the manifest
manifest.xde = true; // deprecated
manifest.developer = {
tool: Config.developerTool,
projectRoot,
Expand Down

0 comments on commit c63aaf4

Please sign in to comment.