react-native-netmera 1.4.9 → 1.5.0-alpha01

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.
@@ -0,0 +1,21 @@
1
+ name: run-prettier-action
2
+ on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+ - develop
7
+ jobs:
8
+ check-bats-version:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - name: Test using Node.js
14
+ uses: actions/setup-node@v3
15
+ with:
16
+ node-version: "14.x"
17
+ - run: yarn install
18
+ - run: cd example && yarn install && cd ..
19
+ - run: yarn prettier --check .
20
+ - run: yarn tsc
21
+ - run: yarn eslint .
package/.idea/aws.xml ADDED
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="accountSettings">
4
+ <option name="activeRegion" value="us-east-1" />
5
+ <option name="recentlyUsedRegions">
6
+ <list>
7
+ <option value="us-east-1" />
8
+ </list>
9
+ </option>
10
+ </component>
11
+ </project>
@@ -0,0 +1,7 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ <inspection_tool class="TsLint" enabled="true" level="WARNING" enabled_by_default="true" />
6
+ </profile>
7
+ </component>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="JavaScriptLibraryMappings">
4
+ <includedPredefinedLibrary name="Node.js Core" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,8 @@
1
+ # Ignore .github:
2
+ .github/
3
+
4
+ # Ignore all iOS files:
5
+ ios/
6
+
7
+ # Ignore all Android files:
8
+ android/