miaoda-expo-devkit 0.1.1-beta.80 → 0.1.1-beta.82

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/biome-config.json CHANGED
@@ -19,6 +19,16 @@
19
19
  "recommended": false,
20
20
  "correctness": {
21
21
  "noUndeclaredDependencies": "error"
22
+ },
23
+ "style": {
24
+ "noRestrictedImports": {
25
+ "level": "error",
26
+ "options": {
27
+ "paths": {
28
+ "expo-barcode-scanner": "Deprecated in SDK 51+. Use expo-camera with barcode scanning instead."
29
+ }
30
+ }
31
+ }
22
32
  }
23
33
  }
24
34
  },
@@ -127,7 +127,8 @@ var PACKAGES_WITHOUT_CONFIG_PLUGIN = /* @__PURE__ */ new Set([
127
127
  "expo-symbols",
128
128
  "expo-ui",
129
129
  "expo-video-thumbnails",
130
- "react-native-webview"
130
+ "react-native-webview",
131
+ "@shopify/react-native-skia"
131
132
  ]);
132
133
  var pluginsCache = /* @__PURE__ */ new Map();
133
134
  var depsCache = /* @__PURE__ */ new Map();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miaoda-expo-devkit",
3
- "version": "0.1.1-beta.80",
3
+ "version": "0.1.1-beta.82",
4
4
  "description": "Expo 应用开发工具集:Sentry DSN 替换 stub、错误/网络捕获、Metro 符号化",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
@@ -66,6 +66,7 @@
66
66
  "./rules/no-missing-notification-asset": "./dist/rules/no-missing-notification-asset.js",
67
67
  "./biome": "./biome-config.json",
68
68
  "./oxlint": "./oxlint-config.json",
69
+ "./pnpm-config.json": "./pnpm-config.json",
69
70
  "./tsconfig-base": "./tsconfig-base.json"
70
71
  },
71
72
  "files": [
package/pnpm-config.json CHANGED
@@ -1,3 +1,8 @@
1
1
  {
2
- "blockedPackages": []
2
+ "blockedPackages": [
3
+ {
4
+ "name": "expo-barcode-scanner",
5
+ "reason": "Deprecated in SDK 51+. Use expo-camera with barcode scanning instead."
6
+ }
7
+ ]
3
8
  }