react-native-iap 8.5.2 → 8.5.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.
@@ -0,0 +1,6 @@
1
+ IapExample/vendor
2
+ IapExample/ios
3
+ IapExample/android
4
+ lib
5
+ ios
6
+ android
package/.swiftlint.yml ADDED
@@ -0,0 +1,11 @@
1
+ opt_in_rules:
2
+ - vertical_whitespace_between_cases
3
+ - vertical_whitespace_closing_braces
4
+ - vertical_whitespace_opening_braces
5
+ - vertical_parameter_alignment_on_call
6
+ - operator_usage_whitespace
7
+ - redundant_type_annotation
8
+
9
+ indentation: 2
10
+ vertical_whitespace_closing_braces: true
11
+ vertical_whitespace_opening_braces: true
package/babel.config.js CHANGED
@@ -1,8 +1,10 @@
1
1
  module.exports = {
2
- presets: ['module:metro-react-native-babel-preset',
3
- '@babel/preset-typescript',
4
- "@babel/preset-env",
5
- '@babel/preset-react',],
2
+ presets: [
3
+ 'module:metro-react-native-babel-preset',
4
+ '@babel/preset-typescript',
5
+ '@babel/preset-env',
6
+ '@babel/preset-react',
7
+ ],
6
8
  plugins: [
7
9
  '@babel/plugin-proposal-class-properties',
8
10
  '@babel/plugin-proposal-private-methods',
@@ -1,3 +1,5 @@
1
1
  export * from './src';
2
+
2
3
  import * as iap from './src/iap';
4
+
3
5
  export default iap;