react-native-gizwits-sdk-v5 1.6.1 → 1.6.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/.DS_Store ADDED
Binary file
package/.eslintignore ADDED
@@ -0,0 +1,3 @@
1
+ **/node_modules
2
+ example/
3
+ lib/
package/.eslintrc.js ADDED
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ extends: ['@react-native-community', 'plugin:prettier/recommended'],
3
+ plugins: ['simple-import-sort'],
4
+ root: true,
5
+ rules: {
6
+ 'import/order': 'off',
7
+ 'simple-import-sort/exports': 'error',
8
+ 'simple-import-sort/imports': 'error',
9
+ 'sort-imports': 'off',
10
+ },
11
+ }
package/.gitignore ADDED
@@ -0,0 +1,67 @@
1
+ # OSX
2
+ #
3
+ .DS_Store
4
+
5
+ # Xcode
6
+ #
7
+ build/
8
+ *.pbxuser
9
+ !default.pbxuser
10
+ *.mode1v3
11
+ !default.mode1v3
12
+ *.mode2v3
13
+ !default.mode2v3
14
+ *.perspectivev3
15
+ !default.perspectivev3
16
+ xcuserdata
17
+ *.xccheckout
18
+ *.moved-aside
19
+ DerivedData
20
+ *.hmap
21
+ *.ipa
22
+ *.xcuserstate
23
+
24
+ # Android/IntelliJ
25
+ #
26
+ build/
27
+ .idea
28
+ .gradle
29
+ local.properties
30
+ *.iml
31
+ *.hprof
32
+ /android/gradlew
33
+ /android/gradlew.bat
34
+ /android/gradle/
35
+
36
+ # node.js
37
+ #
38
+ node_modules/
39
+ npm-debug.log
40
+ yarn-error.log
41
+
42
+ # BUCK
43
+ buck-out/
44
+ \.buckd/
45
+ *.keystore
46
+ !debug.keystore
47
+
48
+ # fastlane
49
+ #
50
+ # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
51
+ # screenshots whenever they are needed.
52
+ # For more information about the recommended setup visit:
53
+ # https://docs.fastlane.tools/best-practices/source-control/
54
+
55
+ */fastlane/report.xml
56
+ */fastlane/Preview.html
57
+ */fastlane/screenshots
58
+
59
+ # Bundle artifact
60
+ *.jsbundle
61
+
62
+ # CocoaPods
63
+ /ios/Pods/
64
+
65
+ # Library
66
+ lib/
67
+ docs
@@ -0,0 +1,3 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="com.codeverse.userSettings.MarscodeWorkspaceAppSettingsState">
4
+ <option name="progress" value="1.0" />
5
+ </component>
6
+ </project>