create-react-native-library 0.53.0 → 0.54.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-react-native-library",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.1",
|
|
4
4
|
"description": "CLI to scaffold React Native libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"@types/validate-npm-package-name": "^3.0.3",
|
|
67
67
|
"@types/yargs": "^17.0.10"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "a7a9209988510d11e698e58f192197c4d52a0242"
|
|
70
70
|
}
|
|
@@ -10,9 +10,14 @@ on:
|
|
|
10
10
|
types:
|
|
11
11
|
- checks_requested
|
|
12
12
|
|
|
13
|
+
concurrency:
|
|
14
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
15
|
+
cancel-in-progress: true
|
|
16
|
+
|
|
13
17
|
jobs:
|
|
14
18
|
lint:
|
|
15
19
|
runs-on: ubuntu-latest
|
|
20
|
+
|
|
16
21
|
steps:
|
|
17
22
|
- name: Checkout
|
|
18
23
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
@@ -28,6 +33,7 @@ jobs:
|
|
|
28
33
|
|
|
29
34
|
test:
|
|
30
35
|
runs-on: ubuntu-latest
|
|
36
|
+
|
|
31
37
|
steps:
|
|
32
38
|
- name: Checkout
|
|
33
39
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
@@ -40,6 +46,7 @@ jobs:
|
|
|
40
46
|
|
|
41
47
|
build-library:
|
|
42
48
|
runs-on: ubuntu-latest
|
|
49
|
+
|
|
43
50
|
steps:
|
|
44
51
|
- name: Checkout
|
|
45
52
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
@@ -53,8 +60,10 @@ jobs:
|
|
|
53
60
|
<% if (project.native) { -%>
|
|
54
61
|
build-android:
|
|
55
62
|
runs-on: ubuntu-latest
|
|
63
|
+
|
|
56
64
|
env:
|
|
57
65
|
TURBO_CACHE_DIR: .turbo/android
|
|
66
|
+
|
|
58
67
|
steps:
|
|
59
68
|
- name: Checkout
|
|
60
69
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
@@ -114,9 +123,13 @@ jobs:
|
|
|
114
123
|
|
|
115
124
|
build-ios:
|
|
116
125
|
runs-on: macos-latest
|
|
126
|
+
|
|
117
127
|
env:
|
|
118
128
|
XCODE_VERSION: 16.2
|
|
119
129
|
TURBO_CACHE_DIR: .turbo/ios
|
|
130
|
+
RCT_USE_RN_DEP: 1
|
|
131
|
+
RCT_USE_PREBUILT_RNCORE: 1
|
|
132
|
+
|
|
120
133
|
steps:
|
|
121
134
|
- name: Checkout
|
|
122
135
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
@@ -165,6 +178,7 @@ jobs:
|
|
|
165
178
|
<% } else { -%>
|
|
166
179
|
build-web:
|
|
167
180
|
runs-on: ubuntu-latest
|
|
181
|
+
|
|
168
182
|
steps:
|
|
169
183
|
- name: Checkout
|
|
170
184
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
@@ -110,7 +110,7 @@ We follow the [conventional commits specification](https://www.conventionalcommi
|
|
|
110
110
|
- `fix`: bug fixes, e.g. fix crash due to deprecated method.
|
|
111
111
|
- `feat`: new features, e.g. add new method to the module.
|
|
112
112
|
- `refactor`: code refactor, e.g. migrate from class components to hooks.
|
|
113
|
-
- `docs`: changes into documentation, e.g. add usage example for the module
|
|
113
|
+
- `docs`: changes into documentation, e.g. add usage example for the module.
|
|
114
114
|
- `test`: adding or updating tests, e.g. add integration tests using detox.
|
|
115
115
|
- `chore`: tooling changes, e.g. change CI config.
|
|
116
116
|
|