vxrn 1.1.218 → 1.1.219
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 +6 -6
- package/react-native-template.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vxrn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.219",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"@hono/node-server": "^1.12.1",
|
|
42
42
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
43
43
|
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
44
|
-
"@vxrn/react-native-prebuilt": "1.1.
|
|
45
|
-
"@vxrn/safe-area": "1.1.
|
|
46
|
-
"@vxrn/vendor": "1.1.
|
|
47
|
-
"@vxrn/vite-flow": "1.1.
|
|
48
|
-
"@vxrn/vite-native-swc": "1.1.
|
|
44
|
+
"@vxrn/react-native-prebuilt": "1.1.219",
|
|
45
|
+
"@vxrn/safe-area": "1.1.219",
|
|
46
|
+
"@vxrn/vendor": "1.1.219",
|
|
47
|
+
"@vxrn/vite-flow": "1.1.219",
|
|
48
|
+
"@vxrn/vite-native-swc": "1.1.219",
|
|
49
49
|
"citty": "^0.1.6",
|
|
50
50
|
"crossws": "^0.2.4",
|
|
51
51
|
"es-module-lexer": "^1.3.0",
|
package/react-native-template.js
CHANGED
|
@@ -124,7 +124,9 @@ ${new Error().stack
|
|
|
124
124
|
const found =
|
|
125
125
|
__getRequire('packages/vxs/dist/esm/index.js', _mod) ||
|
|
126
126
|
// this is only for developing links module in ~/vxrn, can remove later
|
|
127
|
-
__getRequire('vxrn/packages/vxs/dist/esm/index.js', _mod)
|
|
127
|
+
__getRequire('vxrn/packages/vxs/dist/esm/index.js', _mod) ||
|
|
128
|
+
__getRequire('vxs/dist/esm/index.js')
|
|
129
|
+
|
|
128
130
|
if (found) return found
|
|
129
131
|
}
|
|
130
132
|
|