vxrn 1.1.528 → 1.1.530

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/expo-plugin.cjs +14 -11
  2. package/package.json +13 -13
package/expo-plugin.cjs CHANGED
@@ -91,17 +91,18 @@ function removeExpoDefaultsFromAppBuildGradle(appBuildGradleContents) {
91
91
  ].join('\n')
92
92
  }
93
93
 
94
+ // TODO: Get the content of this block from @react-native-community/template (for example, get https://registry.npmjs.org/@react-native-community/template/0.76.6, find the tarball, download it into a tmp dir, extract it, read template/android/app/build.gradle, parse out the react block) to ensure it stays up to date.
94
95
  const ANDROID_APP_BUILD_GRADLE_REACT_BLOCK = `
95
96
  react {
96
97
  /* Folders */
97
- // The root of your project, i.e. where "package.json" lives. Default is '..'
98
- // root = file("../")
99
- // The folder where the react-native NPM package is. Default is ../node_modules/react-native
100
- // reactNativeDir = file("../node_modules/react-native")
101
- // The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
102
- // codegenDir = file("../node_modules/@react-native/codegen")
103
- // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
104
- // cliFile = file("../node_modules/react-native/cli.js")
98
+ // The root of your project, i.e. where "package.json" lives. Default is '../..'
99
+ // root = file("../../")
100
+ // The folder where the react-native NPM package is. Default is ../../node_modules/react-native
101
+ // reactNativeDir = file("../../node_modules/react-native")
102
+ // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
103
+ // codegenDir = file("../../node_modules/@react-native/codegen")
104
+ // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
105
+ // cliFile = file("../../node_modules/react-native/cli.js")
105
106
 
106
107
  /* Variants */
107
108
  // The list of variants to that are debuggable. For those we're going to
@@ -123,8 +124,7 @@ react {
123
124
  // bundleAssetName = "MyApplication.android.bundle"
124
125
  //
125
126
  // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
126
- // This is not actually used by VxRN, but we just need a path to an existing file to make gradle work.
127
- entryFile = file(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim())
127
+ // entryFile = file("../js/MyApplication.android.js")
128
128
  //
129
129
  // A list of extra flags to pass to the 'bundle' commands.
130
130
  // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
@@ -135,7 +135,10 @@ react {
135
135
  // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
136
136
  //
137
137
  // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
138
- hermesFlags = ["-O"]
138
+ // hermesFlags = ["-O", "-output-source-map"]
139
+
140
+ /* Autolinking */
141
+ autolinkLibrariesWithApp()
139
142
  }
140
143
  `.trim()
141
144
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vxrn",
3
- "version": "1.1.528",
3
+ "version": "1.1.530",
4
4
  "sideEffects": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -65,17 +65,17 @@
65
65
  "@hono/node-server": "^1.13.7",
66
66
  "@react-native/dev-middleware": "^0.76.5",
67
67
  "@rollup/plugin-node-resolve": "^15.2.3",
68
- "@vxrn/compiler": "1.1.528",
69
- "@vxrn/debug": "1.1.528",
70
- "@vxrn/query-string": "1.1.528",
71
- "@vxrn/react-native-prebuilt": "1.1.528",
72
- "@vxrn/resolve": "1.1.528",
73
- "@vxrn/safe-area": "1.1.528",
74
- "@vxrn/url-parse": "1.1.528",
75
- "@vxrn/utils": "1.1.528",
76
- "@vxrn/vendor": "1.1.528",
77
- "@vxrn/vite-flow": "1.1.528",
78
- "@vxrn/vite-plugin-metro": "1.1.528",
68
+ "@vxrn/compiler": "1.1.530",
69
+ "@vxrn/debug": "1.1.530",
70
+ "@vxrn/query-string": "1.1.530",
71
+ "@vxrn/react-native-prebuilt": "1.1.530",
72
+ "@vxrn/resolve": "1.1.530",
73
+ "@vxrn/safe-area": "1.1.530",
74
+ "@vxrn/url-parse": "1.1.530",
75
+ "@vxrn/utils": "1.1.530",
76
+ "@vxrn/vendor": "1.1.530",
77
+ "@vxrn/vite-flow": "1.1.530",
78
+ "@vxrn/vite-plugin-metro": "1.1.530",
79
79
  "citty": "^0.1.6",
80
80
  "dotenv": "^17.2.1",
81
81
  "dotenv-expand": "^12.0.2",
@@ -101,7 +101,7 @@
101
101
  "devDependencies": {
102
102
  "@biomejs/biome": "1.9.4",
103
103
  "@react-native-community/cli": "19.0.0",
104
- "@tamagui/build": "^1.132.19",
104
+ "@tamagui/build": "^1.132.23",
105
105
  "@types/find-node-modules": "^2.1.2",
106
106
  "@types/node": "^22.1.0",
107
107
  "@types/qrcode-terminal": "^0",