@vxrn/compiler 1.4.16 → 1.4.17

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/package.json +3 -3
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vxrn/compiler",
3
- "version": "1.4.16",
3
+ "version": "1.4.17",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./package.json": "./package.json",
@@ -35,8 +35,8 @@
35
35
  "@babel/plugin-transform-regenerator": "^7.28.4",
36
36
  "@react-native/babel-plugin-codegen": "^0.82.1",
37
37
  "@swc/core": "^1.14.0",
38
- "@vxrn/utils": "1.4.16",
39
- "@vxrn/vite-native-client": "1.4.16",
38
+ "@vxrn/utils": "1.4.17",
39
+ "@vxrn/vite-native-client": "1.4.17",
40
40
  "babel-plugin-react-compiler": "^1.0.0",
41
41
  "react-native-css-interop": "^0.1.22",
42
42
  "ts-deepmerge": "^7.0.2",
package/src/index.ts CHANGED
@@ -299,7 +299,7 @@ export async function createVXRNCompilerPlugin(
299
299
  return readFileSync(join(basePath, 'refresh-runtime.js'), 'utf-8')
300
300
  }
301
301
  if (id === `${runtimePublicPath}.map`) {
302
- return readFileSync(join(basePath, 'refresh-runtime.js.map'), 'utf-8')
302
+ return JSON.stringify({ version: 3, sources: [], mappings: '' })
303
303
  }
304
304
  return undefined
305
305
  },