@botonic/nx-plugin 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 +2 -8
- package/README.md +15 -29
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
## 2.23.
|
|
1
|
+
## 2.23.1 (2026-03-23)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
- **nx-plugin:** add action and webview generators [BLT-2253] ([#749](https://github.com/metis-ai/hubtype-product/pull/749))
|
|
6
|
-
|
|
7
|
-
### ❤️ Thank You
|
|
8
|
-
|
|
9
|
-
- David Hidalgo @Davidhidalgo
|
|
3
|
+
This was a version bump only for @botonic/nx-plugin to align it with other projects, there were no code changes.
|
|
10
4
|
|
|
11
5
|
## 2.22.1 (2026-03-19)
|
|
12
6
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# @botonic/nx-plugin
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Nx **generators** and **migrations** for Botonic bot apps and workspaces on the **current** `@botonic/*` line.
|
|
4
|
+
|
|
5
|
+
## Source and versions
|
|
6
|
+
|
|
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/nx-plugin`](https://github.com/hubtype/hubtype-product/tree/main/libs/botonic/nx-plugin) |
|
|
11
|
+
|
|
12
|
+
Keep this package aligned in **major version** with `@botonic/core` and other `@botonic/*` dependencies in your workspace.
|
|
4
13
|
|
|
5
14
|
## Features
|
|
6
15
|
|
|
@@ -11,7 +20,9 @@ An Nx plugin for Botonic projects that provides generators and migration tools.
|
|
|
11
20
|
## Installation
|
|
12
21
|
|
|
13
22
|
```bash
|
|
14
|
-
pnpm
|
|
23
|
+
pnpm add @botonic/nx-plugin
|
|
24
|
+
# or
|
|
25
|
+
npm install @botonic/nx-plugin
|
|
15
26
|
```
|
|
16
27
|
|
|
17
28
|
## Generators
|
|
@@ -100,7 +111,7 @@ The migration will automatically run when you upgrade the package:
|
|
|
100
111
|
|
|
101
112
|
```bash
|
|
102
113
|
# Upgrade will prompt for pending migrations
|
|
103
|
-
pnpm
|
|
114
|
+
pnpm add @botonic/nx-plugin@latest
|
|
104
115
|
nx migrate @botonic/nx-plugin --run-migrations
|
|
105
116
|
```
|
|
106
117
|
|
|
@@ -214,27 +225,6 @@ nx migrate @botonic/nx-plugin
|
|
|
214
225
|
nx migrate --run-migrations
|
|
215
226
|
```
|
|
216
227
|
|
|
217
|
-
## Development
|
|
218
|
-
|
|
219
|
-
### Building
|
|
220
|
-
|
|
221
|
-
```bash
|
|
222
|
-
nx build nx-plugin
|
|
223
|
-
```
|
|
224
|
-
|
|
225
|
-
### Testing
|
|
226
|
-
|
|
227
|
-
```bash
|
|
228
|
-
nx test nx-plugin
|
|
229
|
-
```
|
|
230
|
-
|
|
231
|
-
### Manual Migration Testing
|
|
232
|
-
|
|
233
|
-
```bash
|
|
234
|
-
# Run the migration test script
|
|
235
|
-
pnpm run test:migration
|
|
236
|
-
```
|
|
237
|
-
|
|
238
228
|
## Troubleshooting
|
|
239
229
|
|
|
240
230
|
### Migration Issues
|
|
@@ -268,11 +258,7 @@ Migrations are designed to be safe:
|
|
|
268
258
|
|
|
269
259
|
## Contributing
|
|
270
260
|
|
|
271
|
-
|
|
272
|
-
2. Create your feature branch
|
|
273
|
-
3. Add tests for new functionality
|
|
274
|
-
4. Ensure all tests pass
|
|
275
|
-
5. Submit a pull request
|
|
261
|
+
Changes land via the **[hubtype/hubtype-product](https://github.com/hubtype/hubtype-product)** repository (`libs/botonic/nx-plugin`). Add tests for new generators or migrations and open a pull request there.
|
|
276
262
|
|
|
277
263
|
## License
|
|
278
264
|
|