create-react-native-library 0.54.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.54.
|
|
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,6 +10,10 @@ 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
|
|
@@ -55,10 +59,6 @@ jobs:
|
|
|
55
59
|
|
|
56
60
|
<% if (project.native) { -%>
|
|
57
61
|
build-android:
|
|
58
|
-
concurrency:
|
|
59
|
-
group: ${{ github.workflow }}-${{ github.ref }}
|
|
60
|
-
cancel-in-progress: true
|
|
61
|
-
|
|
62
62
|
runs-on: ubuntu-latest
|
|
63
63
|
|
|
64
64
|
env:
|
|
@@ -122,10 +122,6 @@ jobs:
|
|
|
122
122
|
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
|
|
123
123
|
|
|
124
124
|
build-ios:
|
|
125
|
-
concurrency:
|
|
126
|
-
group: ${{ github.workflow }}-${{ github.ref }}
|
|
127
|
-
cancel-in-progress: true
|
|
128
|
-
|
|
129
125
|
runs-on: macos-latest
|
|
130
126
|
|
|
131
127
|
env:
|