@botonic/nx-plugin 2.23.0 → 2.23.2

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 (3) hide show
  1. package/CHANGELOG.md +4 -6
  2. package/README.md +15 -29
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,12 +1,10 @@
1
- ## 2.23.0 (2026-03-23)
1
+ ## 2.23.2 (2026-03-23)
2
2
 
3
- ### 🚀 Features
4
-
5
- - **nx-plugin:** add action and webview generators [BLT-2253] ([#749](https://github.com/metis-ai/hubtype-product/pull/749))
3
+ This was a version bump only for @botonic/nx-plugin to align it with other projects, there were no code changes.
6
4
 
7
- ### ❤️ Thank You
5
+ ## 2.23.1 (2026-03-23)
8
6
 
9
- - David Hidalgo @Davidhidalgo
7
+ This was a version bump only for @botonic/nx-plugin to align it with other projects, there were no code changes.
10
8
 
11
9
  ## 2.22.1 (2026-03-19)
12
10
 
package/README.md CHANGED
@@ -1,6 +1,15 @@
1
1
  # @botonic/nx-plugin
2
2
 
3
- An Nx plugin for Botonic projects that provides generators and migration tools.
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` | Hubtype internal monorepo (not public; packages publish to npm) |
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 install@botonic/nx-plugin
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 install@botonic/nx-plugin@latest
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
- 1. Fork the repository
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
+ Contributions are handled **inside Hubtype** (this plugin ships with the private Botonic source tree). Add tests for new generators or migrations and follow your team’s internal PR process.
276
262
 
277
263
  ## License
278
264
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/nx-plugin",
3
- "version": "2.23.0",
3
+ "version": "2.23.2",
4
4
  "description": "Nx plugin for creating Botonic bot applications",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",