@callstack/brownfield-navigation 3.9.0 → 3.10.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/BrownfieldNavigation.podspec +3 -0
- package/CHANGELOG.md +7 -0
- package/package.json +3 -3
|
@@ -15,7 +15,10 @@ Pod::Spec.new do |spec|
|
|
|
15
15
|
spec.source = { :git => "git@github.com:callstack/react-native-brownfield.git", :tag => "#{spec.version}" }
|
|
16
16
|
spec.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
17
17
|
spec.pod_target_xcconfig = {
|
|
18
|
+
# below: needed to build the XCFramework with `.swiftinterface` files, required by xcodebuild -create-xcframework to succeed
|
|
18
19
|
'DEFINES_MODULE' => 'YES',
|
|
20
|
+
'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES',
|
|
21
|
+
'SWIFT_EMIT_MODULE_INTERFACE' => 'YES',
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
install_modules_dependencies(spec)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @callstack/brownfield-navigation
|
|
2
2
|
|
|
3
|
+
## 3.10.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`3456d3a`](https://github.com/callstack/react-native-brownfield/commit/3456d3aded18002475def4b79889979e76e1db5e)]:
|
|
8
|
+
- @callstack/brownfield-cli@3.10.0
|
|
9
|
+
|
|
3
10
|
## 3.9.0
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@callstack/brownfield-navigation",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Hur Ali",
|
|
6
6
|
"description": "Brownfield navigation helpers for React Native",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"lint": "eslint .",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
31
|
"build": "bob build",
|
|
32
|
-
"dev": "nodemon --watch src --ext js,ts,json --exec \"bob build\"",
|
|
32
|
+
"dev": "nodemon --exitcrash false --watch src --ext js,ts,json --exec \"bob build\"",
|
|
33
33
|
"build:brownfield": "yarn run build",
|
|
34
34
|
"prepack": "cp ../../README.md ./README.md",
|
|
35
35
|
"postpack": "rm ./README.md"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@callstack/brownfield-cli": "^3.
|
|
59
|
+
"@callstack/brownfield-cli": "^3.10.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"react": "*",
|