@powerhousedao/academy 4.1.0-dev.70 → 4.1.0-dev.71
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,13 @@
|
|
|
1
|
+
## 4.1.0-dev.71 (2025-10-15)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **codegen:** update analytics processor imports to use in processor templates ([#1954](https://github.com/powerhouse-inc/powerhouse/pull/1954))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Guillermo Puente Sandoval @gpuente
|
|
10
|
+
|
|
1
11
|
## 4.1.0-dev.70 (2025-10-14)
|
|
2
12
|
|
|
3
13
|
This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
|
|
@@ -800,8 +800,9 @@ Options:
|
|
|
800
800
|
--config-file <path> Path to the powerhouse.config.js file. This allows you to
|
|
801
801
|
customize the behavior of the Vetra development environment.
|
|
802
802
|
|
|
803
|
-
-w, --watch
|
|
804
|
-
and
|
|
803
|
+
-w, --watch Enable dynamic loading for document-models and editors in
|
|
804
|
+
connect-studio and switchboard. When enabled, the system will
|
|
805
|
+
watch for changes in these directories and reload them dynamically.
|
|
805
806
|
|
|
806
807
|
--remote-drive <url> URL of remote drive to connect to. When specified, the switchboard
|
|
807
808
|
connects to this remote drive instead of creating a local Vetra drive.
|
|
@@ -813,20 +814,16 @@ Options:
|
|
|
813
814
|
will prompt for user confirmation before generating code. This is useful
|
|
814
815
|
for development when you want control over when code regeneration happens.
|
|
815
816
|
|
|
816
|
-
--watch-packages Enable dynamic loading for document-models and editors in connect-studio
|
|
817
|
-
and switchboard. When enabled, the system will watch for changes in these
|
|
818
|
-
directories and reload them dynamically. Default is disabled for better performance.
|
|
819
|
-
|
|
820
817
|
Examples:
|
|
821
818
|
$ ph vetra # Start Vetra environment with defaults
|
|
822
819
|
$ ph vetra --switchboard-port 5000 --connect-port 3001 # Use custom ports
|
|
823
820
|
$ ph vetra --config-file custom.powerhouse.config.js # Use custom configuration
|
|
824
|
-
$ ph vetra --watch #
|
|
821
|
+
$ ph vetra --watch # Enable dynamic loading for development
|
|
822
|
+
$ ph vetra -w # Enable dynamic loading (short form)
|
|
825
823
|
$ ph vetra --logs # Enable detailed logging
|
|
826
824
|
$ ph vetra --remote-drive http://localhost:4001/d/docs # Connect to remote drive
|
|
827
825
|
$ ph vetra --disable-connect # Start only backend services
|
|
828
826
|
$ ph vetra --interactive # Enable interactive code generation mode
|
|
829
|
-
$ ph vetra --watch-packages # Enable dynamic loading for development
|
|
830
827
|
$ ph vetra --https-key-file key.pem --https-cert-file cert.pem # Use HTTPS
|
|
831
828
|
```
|
|
832
829
|
|