hypertrack-sdk-react-native 11.0.10 → 12.0.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/README.md +2 -39
- package/android/build.gradle +0 -2
- package/android/gradle.properties +1 -1
- package/hypertrack-sdk-react-native.podspec +1 -1
- package/lib/commonjs/HyperTrack/HyperTrack.js +6 -8
- package/lib/commonjs/HyperTrack/HyperTrack.js.map +1 -1
- package/lib/commonjs/HyperTrack/data_types/HyperTrackError.js +1 -2
- package/lib/commonjs/HyperTrack/data_types/HyperTrackError.js.map +1 -1
- package/lib/commonjs/index.js +1 -2
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/HyperTrack/HyperTrack.js +6 -8
- package/lib/module/HyperTrack/HyperTrack.js.map +1 -1
- package/lib/typescript/HyperTrack/HyperTrack.d.ts +2 -1
- package/package.json +10 -6
- package/src/HyperTrack/HyperTrack.ts +2 -1
- package/CHANGELOG.md +0 -724
- package/CONTRIBUTING.md +0 -77
- package/LICENSE +0 -21
- package/android/.gradle/7.2/fileChanges/last-build.bin +0 -0
- package/android/.gradle/7.2/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/7.2/gc.properties +0 -0
- package/android/.gradle/checksums/checksums.lock +0 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
package/CONTRIBUTING.md
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
# Contributing
|
|
2
|
-
|
|
3
|
-
## FAQ
|
|
4
|
-
|
|
5
|
-
### How to update the HyperTrack SDK version and make a release?
|
|
6
|
-
|
|
7
|
-
1. Update SDK version constant
|
|
8
|
-
|
|
9
|
-
- android
|
|
10
|
-
- [android/gradle.properties](android/gradle.properties)
|
|
11
|
-
- HyperTrackSdk_HyperTrackSDKVersion
|
|
12
|
-
- ios
|
|
13
|
-
- [hypertrack-sdk-react-native.podspec](hypertrack-sdk-react-native.podspec)
|
|
14
|
-
- s.dependency 'HyperTrack', '**version**'
|
|
15
|
-
|
|
16
|
-
2. Increment wrapper version
|
|
17
|
-
|
|
18
|
-
- [package.json](package.json)
|
|
19
|
-
- version
|
|
20
|
-
|
|
21
|
-
3. Update [CHANGELOG](CHANGELOG.md)
|
|
22
|
-
|
|
23
|
-
- **Add the release link to the bottom**
|
|
24
|
-
|
|
25
|
-
4. Update badge in [README](README.md)
|
|
26
|
-
5. Do the release dry run with `just release` and verify that the release is correct (checklist is in the command output)
|
|
27
|
-
6. Commit and merge to master
|
|
28
|
-
7. Create a Github repo release
|
|
29
|
-
- Release title should be the current version tag
|
|
30
|
-
8. Run `npm publish` to publish the package to npm
|
|
31
|
-
|
|
32
|
-
### How to change build config
|
|
33
|
-
|
|
34
|
-
#### Android
|
|
35
|
-
|
|
36
|
-
Change Android build config in `android/gradle.properties`
|
|
37
|
-
|
|
38
|
-
## Development workflow
|
|
39
|
-
|
|
40
|
-
To get started with the project, run `yarn` in the root directory to install the required dependencies for each package:
|
|
41
|
-
|
|
42
|
-
```sh
|
|
43
|
-
yarn
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
> While it's possible to use [`npm`](https://github.com/npm/cli), the tooling is built around [`yarn`](https://classic.yarnpkg.com/), so you'll have an easier time if you use `yarn` for development.
|
|
47
|
-
|
|
48
|
-
Make sure your code passes TypeScript and ESLint. Run the following to verify:
|
|
49
|
-
|
|
50
|
-
```sh
|
|
51
|
-
yarn typescript
|
|
52
|
-
yarn lint
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
To fix formatting errors, run the following:
|
|
56
|
-
|
|
57
|
-
```sh
|
|
58
|
-
yarn lint --fix
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### Linting and tests
|
|
62
|
-
|
|
63
|
-
[ESLint](https://eslint.org/), [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/)
|
|
64
|
-
|
|
65
|
-
We use [TypeScript](https://www.typescriptlang.org/) for type checking, [ESLint](https://eslint.org/) with [Prettier](https://prettier.io/) for linting and formatting the code, and [Jest](https://jestjs.io/) for testing.
|
|
66
|
-
|
|
67
|
-
### Sending a pull request
|
|
68
|
-
|
|
69
|
-
> **Working on your first pull request?** You can learn how from this _free_ series: [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github).
|
|
70
|
-
|
|
71
|
-
When you're sending a pull request:
|
|
72
|
-
|
|
73
|
-
- Prefer small pull requests focused on one change.
|
|
74
|
-
- Verify that linters and tests are passing.
|
|
75
|
-
- Review the documentation to make sure it looks good.
|
|
76
|
-
- Follow the pull request template when opening a pull request.
|
|
77
|
-
- For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 HyperTrack
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|