@callstack/react-native-brownfield 2.0.2 → 2.1.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,21 @@
1
+ # @callstack/react-native-brownfield
2
+
3
+ ## 2.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#207](https://github.com/callstack/react-native-brownfield/pull/207) [`feb7ed2`](https://github.com/callstack/react-native-brownfield/commit/feb7ed2e821112576ec89d6eb17e8ea411aeaa02) Thanks [@artus9033](https://github.com/artus9033)! - feat(android): allow bundle file path
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`2a8563f`](https://github.com/callstack/react-native-brownfield/commit/2a8563f65ed152054ad1290caf963791a368ee9a)]:
12
+ - @callstack/brownfield-cli@1.0.2
13
+
14
+ ## 2.0.2
15
+
16
+ ### Patch Changes
17
+
18
+ - [#198](https://github.com/callstack/react-native-brownfield/pull/198) [`c8c903d`](https://github.com/callstack/react-native-brownfield/commit/c8c903d0d2b78a8c06a41213dfbe781a2daf3d25) Thanks [@artus9033](https://github.com/artus9033)! - docs: added README files to all packages
19
+
20
+ - Updated dependencies [[`c8c903d`](https://github.com/callstack/react-native-brownfield/commit/c8c903d0d2b78a8c06a41213dfbe781a2daf3d25)]:
21
+ - @callstack/brownfield-cli@1.0.1
@@ -78,6 +78,7 @@ class ReactNativeBrownfield private constructor(val reactHost: ReactHost) {
78
78
  .filterIsInstance<ReactPackage>(),
79
79
  jsMainModulePath = options["mainModuleName"] as? String ?: "index",
80
80
  jsBundleAssetPath = options["bundleAssetPath"] as? String ?: "index.android.bundle",
81
+ jsBundleFilePath = options["bundleFilePath"] as? String,
81
82
  useDevSupport = options["useDeveloperSupport"] as? Boolean
82
83
  ?: ReactBuildConfig.DEBUG,
83
84
  jsRuntimeFactory = null
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@callstack/react-native-brownfield",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "license": "MIT",
5
5
  "author": "Michal Chudziak <mike.chudziak@callstack.com>",
6
6
  "bin": {
@@ -73,7 +73,7 @@
73
73
  "react-native": "*"
74
74
  },
75
75
  "dependencies": {
76
- "@callstack/brownfield-cli": "workspace:^"
76
+ "@callstack/brownfield-cli": "^1.0.2"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@babel/core": "^7.25.2",
@@ -102,4 +102,4 @@
102
102
  "engines": {
103
103
  "node": ">=20"
104
104
  }
105
- }
105
+ }