@callstack/brownie 3.6.0 → 3.7.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 +22 -0
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @callstack/brownie
|
|
2
2
|
|
|
3
|
+
## 3.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#313](https://github.com/callstack/react-native-brownfield/pull/313) [`c153378`](https://github.com/callstack/react-native-brownfield/commit/c1533783c0a93372b3c12f08c1428766c0405226) Thanks [@alpharius-ck](https://github.com/alpharius-ck)! - Jest unit tests
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#322](https://github.com/callstack/react-native-brownfield/pull/322) [`cbc99cf`](https://github.com/callstack/react-native-brownfield/commit/cbc99cf2bbbb8ba351a2bde3c839dd1b5dcf302b) Thanks [@marcinszalski-callstack](https://github.com/marcinszalski-callstack)! - fix: make sure android libs are loaded for expo apps
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`c153378`](https://github.com/callstack/react-native-brownfield/commit/c1533783c0a93372b3c12f08c1428766c0405226)]:
|
|
14
|
+
- @callstack/brownfield-cli@3.7.0
|
|
15
|
+
|
|
16
|
+
## 3.6.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [#305](https://github.com/callstack/react-native-brownfield/pull/305) [`eab53d9`](https://github.com/callstack/react-native-brownfield/commit/eab53d9f7b93f38e13185020fcf8a7af23df0d05) Thanks [@hurali97](https://github.com/hurali97)! - fix securiy vulnerabilities
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [[`eab53d9`](https://github.com/callstack/react-native-brownfield/commit/eab53d9f7b93f38e13185020fcf8a7af23df0d05)]:
|
|
23
|
+
- @callstack/brownfield-cli@3.6.1
|
|
24
|
+
|
|
3
25
|
## 3.6.0
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@callstack/brownie",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Oskar Kwaśniewski <oskarkwasniewski@icloud.com>",
|
|
6
6
|
"bin": {
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"lint": "eslint .",
|
|
38
38
|
"typecheck": "tsc --noEmit",
|
|
39
|
+
"build:brownfield": "yarn run build",
|
|
39
40
|
"build": "bob build",
|
|
40
41
|
"dev": "nodemon --watch src --ext js,ts,json --exec \"bob build\""
|
|
41
42
|
},
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
"react-native": "*"
|
|
76
77
|
},
|
|
77
78
|
"dependencies": {
|
|
78
|
-
"@callstack/brownfield-cli": "^3.
|
|
79
|
+
"@callstack/brownfield-cli": "^3.7.0",
|
|
79
80
|
"ts-morph": "^27.0.2"
|
|
80
81
|
},
|
|
81
82
|
"devDependencies": {
|
|
@@ -83,16 +84,16 @@
|
|
|
83
84
|
"@babel/preset-env": "^7.25.3",
|
|
84
85
|
"@babel/preset-typescript": "^7.27.1",
|
|
85
86
|
"@babel/runtime": "^7.25.0",
|
|
86
|
-
"@react-native/babel-preset": "0.
|
|
87
|
-
"@react-native/eslint-config": "0.
|
|
87
|
+
"@react-native/babel-preset": "0.83.2",
|
|
88
|
+
"@react-native/eslint-config": "0.83.2",
|
|
88
89
|
"@types/node": "^25.5.0",
|
|
89
90
|
"@types/react": "^19.1.1",
|
|
90
91
|
"eslint": "^9.39.3",
|
|
91
92
|
"globals": "^17.3.0",
|
|
92
93
|
"import": "^0.0.6",
|
|
93
94
|
"nodemon": "^3.1.14",
|
|
94
|
-
"react-native": "0.
|
|
95
|
-
"react-native-builder-bob": "^0.
|
|
95
|
+
"react-native": "0.83.2",
|
|
96
|
+
"react-native-builder-bob": "^0.41.0",
|
|
96
97
|
"typescript": "5.9.3"
|
|
97
98
|
},
|
|
98
99
|
"codegenConfig": {
|