expo-router 5.1.4 → 5.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-router",
3
- "version": "5.1.4",
3
+ "version": "5.1.5",
4
4
  "description": "Expo Router is a file-based router for React Native and web applications.",
5
5
  "author": "650 Industries, Inc.",
6
6
  "license": "MIT",
@@ -106,6 +106,7 @@
106
106
  },
107
107
  "dependencies": {
108
108
  "@expo/metro-runtime": "5.0.4",
109
+ "@expo/schema-utils": "^0.1.0",
109
110
  "@expo/server": "^0.6.3",
110
111
  "@radix-ui/react-slot": "1.2.0",
111
112
  "@react-navigation/bottom-tabs": "^7.3.10",
@@ -115,10 +116,9 @@
115
116
  "invariant": "^2.2.4",
116
117
  "react-fast-compare": "^3.2.2",
117
118
  "react-native-is-edge-to-edge": "^1.1.6",
118
- "schema-utils": "^4.0.1",
119
119
  "semver": "~7.6.3",
120
120
  "server-only": "^0.0.1",
121
121
  "shallowequal": "^1.1.0"
122
122
  },
123
- "gitHead": "6cf823ec0c535f07b9adf3311bbfa94be609898d"
123
+ "gitHead": "85192ee6f5e76e0e81f91151c9c8aaca43c22c65"
124
124
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ const schema_utils_1 = require("@expo/schema-utils");
3
4
  const config_plugins_1 = require("expo/config-plugins");
4
- const schema_utils_1 = require("schema-utils");
5
5
  const schema = require('../options.json');
6
6
  const withExpoHeadIos = (config) => {
7
7
  return (0, config_plugins_1.withInfoPlist)(config, (config) => {
@@ -1,5 +1,5 @@
1
+ import { validate } from '@expo/schema-utils';
1
2
  import { ConfigPlugin, withInfoPlist } from 'expo/config-plugins';
2
- import { validate } from 'schema-utils';
3
3
 
4
4
  const schema = require('../options.json');
5
5