@powerhousedao/academy 5.0.0-staging.13 → 5.0.0-staging.15
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
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 5.0.0-staging.15 (2025-09-24)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- added watch-packages option to vetra command and disabled dynamic package loading by default ([#1875](https://github.com/powerhouse-inc/powerhouse/pull/1875))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Guillermo Puente Sandoval @gpuente
|
|
10
|
+
|
|
11
|
+
## 5.0.0-staging.14 (2025-09-23)
|
|
12
|
+
|
|
13
|
+
This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
|
|
14
|
+
|
|
1
15
|
## 5.0.0-staging.13 (2025-09-23)
|
|
2
16
|
|
|
3
17
|
### 🚀 Features
|
|
@@ -756,6 +756,10 @@ Options:
|
|
|
756
756
|
will prompt for user confirmation before generating code. This is useful
|
|
757
757
|
for development when you want control over when code regeneration happens.
|
|
758
758
|
|
|
759
|
+
--watch-packages Enable dynamic loading for document-models and editors in connect-studio
|
|
760
|
+
and switchboard. When enabled, the system will watch for changes in these
|
|
761
|
+
directories and reload them dynamically. Default is disabled for better performance.
|
|
762
|
+
|
|
759
763
|
Examples:
|
|
760
764
|
$ ph vetra # Start Vetra environment with defaults
|
|
761
765
|
$ ph vetra --switchboard-port 5000 --connect-port 3001 # Use custom ports
|
|
@@ -765,6 +769,7 @@ Examples:
|
|
|
765
769
|
$ ph vetra --remote-drive http://localhost:4001/d/docs # Connect to remote drive
|
|
766
770
|
$ ph vetra --disable-connect # Start only backend services
|
|
767
771
|
$ ph vetra --interactive # Enable interactive code generation mode
|
|
772
|
+
$ ph vetra --watch-packages # Enable dynamic loading for development
|
|
768
773
|
$ ph vetra --https-key-file key.pem --https-cert-file cert.pem # Use HTTPS
|
|
769
774
|
```
|
|
770
775
|
|