one 1.2.89 → 1.2.90

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.
Files changed (2) hide show
  1. package/env.d.ts +2 -2
  2. package/package.json +9 -9
package/env.d.ts CHANGED
@@ -14,8 +14,8 @@ interface OneEnvVariables {
14
14
  // Platform detection
15
15
  /** "client" for client-side web, "ssr" for server-side web, "ios" or "android" for native */
16
16
  VITE_ENVIRONMENT: 'client' | 'ssr' | 'ios' | 'android'
17
- /** true for native platforms (iOS and Android), false for web (client and SSR). Useful for tree-shaking native-only code. */
18
- VITE_NATIVE: boolean
17
+ /** "1" for native platforms (iOS and Android), "" for web (client and SSR). Truthy/falsy for tree-shaking native-only code. */
18
+ VITE_NATIVE: '' | '1'
19
19
  /** "web" for web builds, "ios" or "android" for native. Matches Expo convention. */
20
20
  EXPO_OS: 'web' | 'ios' | 'android'
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "one",
3
- "version": "1.2.89",
3
+ "version": "1.2.90",
4
4
  "license": "BSD-3-Clause",
5
5
  "sideEffects": [
6
6
  "setup.mjs",
@@ -149,17 +149,17 @@
149
149
  "@react-navigation/routers": "~7.5.1",
150
150
  "@swc/core": "^1.14.0",
151
151
  "@ungap/structured-clone": "^1.2.0",
152
- "@vxrn/color-scheme": "1.2.89",
153
- "@vxrn/compiler": "1.2.89",
154
- "@vxrn/resolve": "1.2.89",
155
- "@vxrn/tslib-lite": "1.2.89",
156
- "@vxrn/use-isomorphic-layout-effect": "1.2.89",
157
- "@vxrn/vite-plugin-metro": "1.2.89",
152
+ "@vxrn/color-scheme": "1.2.90",
153
+ "@vxrn/compiler": "1.2.90",
154
+ "@vxrn/resolve": "1.2.90",
155
+ "@vxrn/tslib-lite": "1.2.90",
156
+ "@vxrn/use-isomorphic-layout-effect": "1.2.90",
157
+ "@vxrn/vite-plugin-metro": "1.2.90",
158
158
  "babel-dead-code-elimination": "1.0.10",
159
159
  "babel-plugin-module-resolver": "^5.0.2",
160
160
  "citty": "^0.1.6",
161
161
  "core-js": "^3.38.1",
162
- "create-vxrn": "1.2.89",
162
+ "create-vxrn": "1.2.90",
163
163
  "escape-string-regexp": "^5.0.0",
164
164
  "expo-linking": "~8.0.8",
165
165
  "expo-modules-core": "~3.0.24",
@@ -185,7 +185,7 @@
185
185
  "vite": "^7.1.12",
186
186
  "vite-plugin-barrel": "^0.4.1",
187
187
  "vite-tsconfig-paths": "^5.1.4",
188
- "vxrn": "1.2.89",
188
+ "vxrn": "1.2.90",
189
189
  "ws": "^8.18.0",
190
190
  "xxhashjs": "^0.2.2"
191
191
  },