@kingstinct/react-native-healthkit 4.0.1 → 4.2.0
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/{ios/.DS_Store → .DS_Store} +0 -0
- package/.circleci/config.yml +98 -0
- package/.editorconfig +15 -0
- package/.gitattributes +3 -0
- package/.github/workflows/main.yml +32 -0
- package/.gitignore +60 -0
- package/CONTRIBUTING.md +184 -0
- package/README.md +1 -1
- package/babel.config.js +3 -0
- package/example-expo/.expo/README.md +15 -0
- package/example-expo/.expo/devices.json +8 -0
- package/example-expo/.expo/packager-info.json +5 -0
- package/example-expo/.expo/settings.json +9 -0
- package/example-expo/.expo-shared/assets.json +4 -0
- package/example-expo/.gitignore +14 -0
- package/example-expo/App.tsx +376 -0
- package/example-expo/app.json +43 -0
- package/example-expo/assets/adaptive-icon.png +0 -0
- package/example-expo/assets/favicon.png +0 -0
- package/example-expo/assets/icon.png +0 -0
- package/example-expo/assets/splash.png +0 -0
- package/example-expo/babel.config.js +8 -0
- package/example-expo/build-1653040579600.ipa +0 -0
- package/example-expo/build-1653041063216.ipa +0 -0
- package/example-expo/eas.json +18 -0
- package/example-expo/package.json +32 -0
- package/example-expo/tsconfig.json +6 -0
- package/example-expo/yarn.lock +6857 -0
- package/ios/ReactNativeHealthkit.m +9 -9
- package/ios/ReactNativeHealthkit.swift +38 -4
- package/lib/commonjs/index.ios.js +9 -5
- package/lib/commonjs/index.ios.js.map +1 -1
- package/lib/commonjs/native-types.js +8 -1
- package/lib/commonjs/native-types.js.map +1 -1
- package/lib/module/index.ios.js +9 -5
- package/lib/module/index.ios.js.map +1 -1
- package/lib/module/native-types.js +7 -0
- package/lib/module/native-types.js.map +1 -1
- package/lib/typescript/example-expo/App.d.ts +3 -0
- package/lib/typescript/src/__tests__/index.test.d.ts +0 -0
- package/lib/typescript/src/native-types.d.ts +20 -0
- package/package.json +11 -10
- package/src/__tests__/index.test.tsx +1 -0
- package/src/index.ios.tsx +8 -10
- package/src/native-types.ts +54 -31
- package/tsconfig.json +27 -0
- package/yarn.lock +10241 -0
- package/ios/ReactNativeHealthkit.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -4
- package/ios/ReactNativeHealthkit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/ReactNativeHealthkit.xcodeproj/project.xcworkspace/xcuserdata/robertherber.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/ReactNativeHealthkit.xcodeproj/xcuserdata/robertherber.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
package/tsconfig.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"baseUrl": ".",
|
|
4
|
+
"paths": {
|
|
5
|
+
"@kingstinct/react-native-healthkit": ["./src/index"]
|
|
6
|
+
},
|
|
7
|
+
"allowUnreachableCode": false,
|
|
8
|
+
"allowUnusedLabels": false,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"importsNotUsedAsValues": "error",
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"jsx": "react",
|
|
13
|
+
"lib": ["esnext"],
|
|
14
|
+
"module": "esnext",
|
|
15
|
+
"moduleResolution": "node",
|
|
16
|
+
"noFallthroughCasesInSwitch": true,
|
|
17
|
+
"noImplicitReturns": true,
|
|
18
|
+
"noImplicitUseStrict": false,
|
|
19
|
+
"noStrictGenericChecks": false,
|
|
20
|
+
"noUnusedLocals": true,
|
|
21
|
+
"noUnusedParameters": true,
|
|
22
|
+
"resolveJsonModule": true,
|
|
23
|
+
"skipLibCheck": true,
|
|
24
|
+
"strict": true,
|
|
25
|
+
"target": "esnext"
|
|
26
|
+
}
|
|
27
|
+
}
|