@botonic/shared 2.23.0 → 2.23.1
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/CHANGELOG.md +1 -1
- package/README.md +16 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
|
-
# shared
|
|
1
|
+
# @botonic/shared
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Shared types, helpers, and building blocks used by `@botonic/core`, plugins, and related packages in the **current** Botonic line.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Source and versions
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
| Line | npm | Source |
|
|
8
|
+
| ----------- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
9
|
+
| **Legacy** | `0.x` | [github.com/hubtype/botonic](https://github.com/hubtype/botonic) |
|
|
10
|
+
| **Current** | `2.x` | [github.com/hubtype/hubtype-product](https://github.com/hubtype/hubtype-product) · [`libs/botonic/shared`](https://github.com/hubtype/hubtype-product/tree/main/libs/botonic/shared) |
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
Match the **major version** of `@botonic/shared` to `@botonic/core` and other `@botonic/*` packages in your project.
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pnpm add @botonic/shared
|
|
18
|
+
# or
|
|
19
|
+
npm install @botonic/shared
|
|
20
|
+
```
|