@onekeyfe/react-native-perf-memory 1.1.22 → 1.1.23

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 (2) hide show
  1. package/package.json +1 -1
  2. package/README.md +0 -36
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onekeyfe/react-native-perf-memory",
3
- "version": "1.1.22",
3
+ "version": "1.1.23",
4
4
  "description": "react-native-perf-memory",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
package/README.md DELETED
@@ -1,36 +0,0 @@
1
- # react-native-perf-memory
2
-
3
- react-native-perf-memory
4
-
5
- ## Installation
6
-
7
- ```sh
8
- npm install react-native-perf-memory react-native-nitro-modules
9
-
10
- > `react-native-nitro-modules` is required as this library relies on [Nitro Modules](https://nitro.margelo.com/).
11
- ```
12
-
13
- ## Usage
14
-
15
- ```js
16
- import { ReactNativePerfMemory } from 'react-native-perf-memory';
17
-
18
- // ...
19
-
20
- const result = await ReactNativePerfMemory.hello({ message: 'World' });
21
- console.log(result); // { success: true, data: 'Hello, World!' }
22
- ```
23
-
24
- ## Contributing
25
-
26
- - [Development workflow](CONTRIBUTING.md#development-workflow)
27
- - [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
28
- - [Code of conduct](CODE_OF_CONDUCT.md)
29
-
30
- ## License
31
-
32
- MIT
33
-
34
- ---
35
-
36
- Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)