@norcy/react-native-toolkit 0.1.41 → 0.1.43

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.
Files changed (90) hide show
  1. package/.DS_Store +0 -0
  2. package/.circleci/config.yml +98 -0
  3. package/.editorconfig +15 -0
  4. package/.gitattributes +3 -0
  5. package/.gitignore +60 -0
  6. package/.prettierrc +8 -0
  7. package/.vscode/settings.json +9 -0
  8. package/.watchmanconfig +6 -0
  9. package/README.md +63 -12
  10. package/babel.config.js +3 -0
  11. package/ios/.DS_Store +0 -0
  12. package/lib/commonjs/LoginManager.js +0 -1
  13. package/lib/commonjs/LoginManager.js.map +1 -1
  14. package/lib/commonjs/SentryManager.js +2 -1
  15. package/lib/commonjs/SentryManager.js.map +1 -1
  16. package/lib/commonjs/Tool.js.map +1 -1
  17. package/lib/commonjs/VipManager.js +0 -3
  18. package/lib/commonjs/VipManager.js.map +1 -1
  19. package/lib/module/LoginManager.js +0 -1
  20. package/lib/module/LoginManager.js.map +1 -1
  21. package/lib/module/SentryManager.js +2 -1
  22. package/lib/module/SentryManager.js.map +1 -1
  23. package/lib/module/Tool.js.map +1 -1
  24. package/lib/module/VipManager.js +0 -3
  25. package/lib/module/VipManager.js.map +1 -1
  26. package/lib/typescript/{src/Tool.d.ts → Tool.d.ts} +1 -0
  27. package/locales/en-US.json +1 -0
  28. package/locales/zh-CN.json +1 -0
  29. package/package.json +26 -26
  30. package/src/.DS_Store +0 -0
  31. package/src/LoginManager.ts +0 -1
  32. package/src/SentryManager.ts +2 -1
  33. package/src/Tool.ts +2 -0
  34. package/src/VipManager.ts +0 -3
  35. package/tsconfig.json +27 -0
  36. package/yarn.lock +11432 -0
  37. package/lib/typescript/babel.config.d.ts +0 -1
  38. package/lib/typescript/lib/commonjs/AppBadgeContext.d.ts +0 -8
  39. package/lib/typescript/lib/commonjs/AppleLoginUtil.d.ts +0 -27
  40. package/lib/typescript/lib/commonjs/ConfigDataModel.d.ts +0 -14
  41. package/lib/typescript/lib/commonjs/DevConfig.d.ts +0 -7
  42. package/lib/typescript/lib/commonjs/Frequence.d.ts +0 -6
  43. package/lib/typescript/lib/commonjs/LoginManager.d.ts +0 -15
  44. package/lib/typescript/lib/commonjs/MessageModel.d.ts +0 -10
  45. package/lib/typescript/lib/commonjs/Notification.d.ts +0 -8
  46. package/lib/typescript/lib/commonjs/PrefData.d.ts +0 -79
  47. package/lib/typescript/lib/commonjs/ReportUtil.d.ts +0 -16
  48. package/lib/typescript/lib/commonjs/SentryManager.d.ts +0 -5
  49. package/lib/typescript/lib/commonjs/SyncPrefData.d.ts +0 -5
  50. package/lib/typescript/lib/commonjs/Tool.d.ts +0 -26
  51. package/lib/typescript/lib/commonjs/VipAndroidManager.d.ts +0 -25
  52. package/lib/typescript/lib/commonjs/VipManager.d.ts +0 -25
  53. package/lib/typescript/lib/commonjs/WeChatLoginUtil.d.ts +0 -4
  54. package/lib/typescript/lib/commonjs/constant.d.ts +0 -3
  55. package/lib/typescript/lib/commonjs/index.d.ts +0 -3
  56. package/lib/typescript/lib/module/AppBadgeContext.d.ts +0 -14
  57. package/lib/typescript/lib/module/AppleLoginUtil.d.ts +0 -26
  58. package/lib/typescript/lib/module/ConfigDataModel.d.ts +0 -13
  59. package/lib/typescript/lib/module/DevConfig.d.ts +0 -6
  60. package/lib/typescript/lib/module/Frequence.d.ts +0 -5
  61. package/lib/typescript/lib/module/LoginManager.d.ts +0 -14
  62. package/lib/typescript/lib/module/MessageModel.d.ts +0 -9
  63. package/lib/typescript/lib/module/Notification.d.ts +0 -7
  64. package/lib/typescript/lib/module/PrefData.d.ts +0 -78
  65. package/lib/typescript/lib/module/ReportUtil.d.ts +0 -15
  66. package/lib/typescript/lib/module/SentryManager.d.ts +0 -4
  67. package/lib/typescript/lib/module/SyncPrefData.d.ts +0 -4
  68. package/lib/typescript/lib/module/Tool.d.ts +0 -25
  69. package/lib/typescript/lib/module/VipAndroidManager.d.ts +0 -24
  70. package/lib/typescript/lib/module/VipManager.d.ts +0 -24
  71. package/lib/typescript/lib/module/WeChatLoginUtil.d.ts +0 -3
  72. package/lib/typescript/lib/module/constant.d.ts +0 -2
  73. package/lib/typescript/lib/module/index.d.ts +0 -19
  74. /package/lib/typescript/{src/AppBadgeContext.d.ts → AppBadgeContext.d.ts} +0 -0
  75. /package/lib/typescript/{src/AppleLoginUtil.d.ts → AppleLoginUtil.d.ts} +0 -0
  76. /package/lib/typescript/{src/ConfigDataModel.d.ts → ConfigDataModel.d.ts} +0 -0
  77. /package/lib/typescript/{src/DevConfig.d.ts → DevConfig.d.ts} +0 -0
  78. /package/lib/typescript/{src/Frequence.d.ts → Frequence.d.ts} +0 -0
  79. /package/lib/typescript/{src/LoginManager.d.ts → LoginManager.d.ts} +0 -0
  80. /package/lib/typescript/{src/MessageModel.d.ts → MessageModel.d.ts} +0 -0
  81. /package/lib/typescript/{src/Notification.d.ts → Notification.d.ts} +0 -0
  82. /package/lib/typescript/{src/PrefData.d.ts → PrefData.d.ts} +0 -0
  83. /package/lib/typescript/{src/ReportUtil.d.ts → ReportUtil.d.ts} +0 -0
  84. /package/lib/typescript/{src/SentryManager.d.ts → SentryManager.d.ts} +0 -0
  85. /package/lib/typescript/{src/SyncPrefData.d.ts → SyncPrefData.d.ts} +0 -0
  86. /package/lib/typescript/{src/VipAndroidManager.d.ts → VipAndroidManager.d.ts} +0 -0
  87. /package/lib/typescript/{src/VipManager.d.ts → VipManager.d.ts} +0 -0
  88. /package/lib/typescript/{src/WeChatLoginUtil.d.ts → WeChatLoginUtil.d.ts} +0 -0
  89. /package/lib/typescript/{src/constant.d.ts → constant.d.ts} +0 -0
  90. /package/lib/typescript/{src/index.d.ts → index.d.ts} +0 -0
package/tsconfig.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "compilerOptions": {
3
+ "allowSyntheticDefaultImports": true,
4
+ "esModuleInterop": true,
5
+ "allowUnreachableCode": false,
6
+ "allowUnusedLabels": true,
7
+ "baseUrl": ".",
8
+ "paths": {
9
+ "@norcy/react-native-toolkit": ["./src/index"]
10
+ },
11
+ "jsx": "react",
12
+ "lib": ["esnext"],
13
+ "module": "esnext",
14
+ "target": "esnext",
15
+ "moduleResolution": "node",
16
+ "forceConsistentCasingInFileNames": true,
17
+ "noFallthroughCasesInSwitch": true,
18
+ "noImplicitReturns": true,
19
+ "noImplicitUseStrict": false,
20
+ "noStrictGenericChecks": false,
21
+ "noUnusedLocals": true,
22
+ "noUnusedParameters": true,
23
+ "resolveJsonModule": true,
24
+ "skipLibCheck": true,
25
+ "strict": true
26
+ }
27
+ }