react-native-inapp-inspector 1.1.0 → 1.1.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/README.md +42 -40
- package/dist/commonjs/components/ReduxTreeView.d.ts +4 -0
- package/dist/commonjs/components/ReduxTreeView.js +35 -5
- package/dist/commonjs/constants/index.d.ts +1 -0
- package/dist/commonjs/constants/index.js +5 -1
- package/dist/commonjs/constants/version.d.ts +1 -0
- package/dist/commonjs/constants/version.js +6 -0
- package/dist/commonjs/customHooks/reduxLogger.js +9 -1
- package/dist/commonjs/index.js +488 -40
- package/dist/esm/components/ReduxTreeView.d.ts +4 -0
- package/dist/esm/components/ReduxTreeView.js +30 -4
- package/dist/esm/constants/index.d.ts +1 -0
- package/dist/esm/constants/index.js +3 -0
- package/dist/esm/constants/version.d.ts +1 -0
- package/dist/esm/constants/version.js +3 -0
- package/dist/esm/customHooks/reduxLogger.js +9 -1
- package/dist/esm/index.js +490 -42
- package/example/ios/example.xcodeproj/project.pbxproj +10 -0
- package/package.json +2 -1
|
@@ -191,10 +191,14 @@
|
|
|
191
191
|
inputFileListPaths = (
|
|
192
192
|
"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
193
193
|
);
|
|
194
|
+
inputPaths = (
|
|
195
|
+
);
|
|
194
196
|
name = "[CP] Embed Pods Frameworks";
|
|
195
197
|
outputFileListPaths = (
|
|
196
198
|
"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
197
199
|
);
|
|
200
|
+
outputPaths = (
|
|
201
|
+
);
|
|
198
202
|
runOnlyForDeploymentPostprocessing = 0;
|
|
199
203
|
shellPath = /bin/sh;
|
|
200
204
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
|
|
@@ -230,10 +234,14 @@
|
|
|
230
234
|
inputFileListPaths = (
|
|
231
235
|
"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
232
236
|
);
|
|
237
|
+
inputPaths = (
|
|
238
|
+
);
|
|
233
239
|
name = "[CP] Copy Pods Resources";
|
|
234
240
|
outputFileListPaths = (
|
|
235
241
|
"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
236
242
|
);
|
|
243
|
+
outputPaths = (
|
|
244
|
+
);
|
|
237
245
|
runOnlyForDeploymentPostprocessing = 0;
|
|
238
246
|
shellPath = /bin/sh;
|
|
239
247
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
|
|
@@ -260,6 +268,7 @@
|
|
|
260
268
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
261
269
|
CLANG_ENABLE_MODULES = YES;
|
|
262
270
|
CURRENT_PROJECT_VERSION = 1;
|
|
271
|
+
DEVELOPMENT_TEAM = "";
|
|
263
272
|
ENABLE_BITCODE = NO;
|
|
264
273
|
INFOPLIST_FILE = example/Info.plist;
|
|
265
274
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
|
|
@@ -291,6 +300,7 @@
|
|
|
291
300
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
292
301
|
CLANG_ENABLE_MODULES = YES;
|
|
293
302
|
CURRENT_PROJECT_VERSION = 1;
|
|
303
|
+
DEVELOPMENT_TEAM = "";
|
|
294
304
|
INFOPLIST_FILE = example/Info.plist;
|
|
295
305
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
|
|
296
306
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-inapp-inspector",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A self-contained network, console, analytics, and webview inspector for React Native applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"assets"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
+
"prebuild": "node scripts/gen-version.js",
|
|
31
32
|
"build": "tsc && tsc -p tsconfig.esm.json",
|
|
32
33
|
"watch": "tsc -w",
|
|
33
34
|
"prepack": "npm run build",
|