unified-ble-manager 4.0.0-reserved.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 +34 -0
- package/index.js +11 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# unified-ble-manager
|
|
2
|
+
|
|
3
|
+
**Name reserved** for the **4.0** generation of this BLE stack.
|
|
4
|
+
|
|
5
|
+
| | |
|
|
6
|
+
|--|--|
|
|
7
|
+
| **Canonical 4.0+ package** | `unified-ble-manager` |
|
|
8
|
+
| **Current production (3.9.x)** | [`@sfourdrinier/react-native-ble-plx`](https://www.npmjs.com/package/@sfourdrinier/react-native-ble-plx) |
|
|
9
|
+
| **Charter** | [ROADMAP.4.0.md](https://github.com/sfourdrinier/react-native-ble-plx/blob/master/ROADMAP.4.0.md) |
|
|
10
|
+
|
|
11
|
+
## Versioning
|
|
12
|
+
|
|
13
|
+
This package uses the **4.0.0** version line (not 1.x) so it continues the product lineage of `@sfourdrinier/react-native-ble-plx` and can share a clean major with the npm **shim** story.
|
|
14
|
+
|
|
15
|
+
| Tag | Meaning |
|
|
16
|
+
|-----|---------|
|
|
17
|
+
| `4.0.0-reserved.*` | Name claim / placeholder only — **do not depend on this** |
|
|
18
|
+
| `4.0.0-alpha.*` | Future development alphas |
|
|
19
|
+
| `4.0.0` | Future GA |
|
|
20
|
+
|
|
21
|
+
## Install (today)
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pnpm add @sfourdrinier/react-native-ble-plx
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Do **not** install `unified-ble-manager@4.0.0-reserved.*` in applications.
|
|
28
|
+
|
|
29
|
+
## Identity (locked)
|
|
30
|
+
|
|
31
|
+
- npm: `unified-ble-manager`
|
|
32
|
+
- CocoaPods / Android module / Expo plugin: `unified-ble-manager`
|
|
33
|
+
- Android namespace: `com.sfourdrinier.unifiedblemanager`
|
|
34
|
+
- Legacy npm shim (planned): `@sfourdrinier/react-native-ble-plx` → re-exports this package
|
package/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
console.warn(
|
|
4
|
+
'[unified-ble-manager] This name is reserved for the 4.0 release train ' +
|
|
5
|
+
'(lineage of @sfourdrinier/react-native-ble-plx). ' +
|
|
6
|
+
'Do not use 4.0.0-reserved.* in apps. ' +
|
|
7
|
+
'Production today: @sfourdrinier/react-native-ble-plx@^3.9. ' +
|
|
8
|
+
'See ROADMAP.4.0.md in the GitHub repository.'
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
module.exports = {};
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "unified-ble-manager",
|
|
3
|
+
"version": "4.0.0-reserved.0",
|
|
4
|
+
"description": "Reserved for the unified-ble-manager 4.0 train (successor lineage of @sfourdrinier/react-native-ble-plx). Not production-ready. Use @sfourdrinier/react-native-ble-plx@^3.9 until a real 4.0.0-alpha is published.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/sfourdrinier/react-native-ble-plx.git"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/sfourdrinier/react-native-ble-plx/blob/master/ROADMAP.4.0.md",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/sfourdrinier/react-native-ble-plx/issues"
|
|
18
|
+
},
|
|
19
|
+
"author": "Stephane Fourdrinier",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"bluetooth",
|
|
22
|
+
"ble",
|
|
23
|
+
"unified-ble-manager",
|
|
24
|
+
"reserved"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
}
|
|
29
|
+
}
|