create-react-native-library 0.48.1 → 0.48.3
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.48.
|
|
3
|
+
"version": "0.48.3",
|
|
4
4
|
"description": "CLI to scaffold React Native libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"@types/validate-npm-package-name": "^3.0.3",
|
|
66
66
|
"@types/yargs": "^17.0.10"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "96ee93473602a83c4b0d7160d8e4a71de17d2939"
|
|
69
69
|
}
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
<% if (project.moduleConfig === 'nitro-modules') { -%>
|
|
116
116
|
"react-native": "*",
|
|
117
117
|
"react-native-nitro-modules": "^<%- versions.nitroModules %>"
|
|
118
|
-
<% } else { -%>
|
|
118
|
+
<% } else { -%>
|
|
119
119
|
"react-native": "*"
|
|
120
120
|
<% } -%>
|
|
121
121
|
},
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
},
|
|
225
225
|
"codegenConfig": {
|
|
226
226
|
"name": "RN<%- project.name -%><%- project.viewConfig !== null ? 'View': '' -%>Spec",
|
|
227
|
-
"type": "<%- project.viewConfig !== null ? '
|
|
227
|
+
"type": "<%- project.viewConfig !== null ? 'all': 'modules' -%>",
|
|
228
228
|
"jsSrcsDir": "src",
|
|
229
229
|
"outputDir": {
|
|
230
230
|
"ios": "ios/generated",
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<% if (project.arch === 'new') { -%>
|
|
7
7
|
"codegenConfig": {
|
|
8
8
|
"name": "RN<%- project.name -%><%- project.viewConfig !== null ? 'View': '' -%>Spec",
|
|
9
|
-
"type": <%- project.viewConfig !== null ? '"
|
|
9
|
+
"type": <%- project.viewConfig !== null ? '"all"': '"modules"' %>,
|
|
10
10
|
"jsSrcsDir": "src"
|
|
11
11
|
},
|
|
12
12
|
<% } -%>
|