@powerhousedao/academy 4.1.0-dev.94 → 4.1.0-dev.95
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.95 (2025-10-30)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- enabled ph init --remote-drives and ph checkout commands ([#2057](https://github.com/powerhouse-inc/powerhouse/pull/2057))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Guillermo Puente Sandoval @gpuente
|
|
10
|
+
|
|
1
11
|
## 4.1.0-dev.94 (2025-10-29)
|
|
2
12
|
|
|
3
13
|
This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
|
|
@@ -16,11 +16,43 @@ pnpm install -g ph-cmd
|
|
|
16
16
|
|
|
17
17
|
:::
|
|
18
18
|
|
|
19
|
-
<!-- AUTO-GENERATED-CLI-COMMANDS-START -->\n<!-- This content is automatically generated. Do not edit directly. -->\n### ph-cmd Commands\n\n- [
|
|
19
|
+
<!-- AUTO-GENERATED-CLI-COMMANDS-START -->\n<!-- This content is automatically generated. Do not edit directly. -->\n### ph-cmd Commands\n\n- [Checkout](#checkout)
|
|
20
|
+
- [Init](#init)
|
|
20
21
|
- [Setup Globals](#setup-globals)
|
|
21
22
|
- [Update](#update)
|
|
22
23
|
- [Use](#use)
|
|
23
24
|
|
|
25
|
+
## Checkout
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
Command Overview:
|
|
29
|
+
The checkout command clones an existing Powerhouse project from a remote Vetra drive.
|
|
30
|
+
This allows you to work on projects that have been initialized and configured by others.
|
|
31
|
+
|
|
32
|
+
This command:
|
|
33
|
+
1. Fetches the GitHub repository URL from the specified Vetra remote drive
|
|
34
|
+
2. Clones the repository to your local machine
|
|
35
|
+
3. Installs all project dependencies
|
|
36
|
+
|
|
37
|
+
Required Options:
|
|
38
|
+
-r, --remote-drive <url> URL of the Vetra remote drive containing the project.
|
|
39
|
+
The drive must have a Vetra package with a configured GitHub URL.
|
|
40
|
+
|
|
41
|
+
Options:
|
|
42
|
+
--package-manager <pm> Specify which package manager to use for installing dependencies.
|
|
43
|
+
Supported: npm, yarn, pnpm, bun
|
|
44
|
+
If not specified, uses the detected package manager from your environment.
|
|
45
|
+
|
|
46
|
+
Examples:
|
|
47
|
+
$ ph checkout --remote-drive https://vetra.example.com/d/abc123 # Clone project using default package manager
|
|
48
|
+
$ ph checkout --remote-drive https://vetra.example.com/d/abc123 --package-manager pnpm # Clone and install with pnpm
|
|
49
|
+
|
|
50
|
+
Notes:
|
|
51
|
+
- The remote drive must contain a Vetra package document with a GitHub URL configured
|
|
52
|
+
- If no GitHub URL is found, you'll need to use 'ph init --remote-drive' instead to create a new project
|
|
53
|
+
- The repository will be cloned into a directory named after the repository
|
|
54
|
+
```
|
|
55
|
+
|
|
24
56
|
## Init
|
|
25
57
|
|
|
26
58
|
```
|