Skip to content

Commit 793933d

Browse files
committed
chore: wip
1 parent 2308bb8 commit 793933d

File tree

6 files changed

+4
-35
lines changed

6 files changed

+4
-35
lines changed

.github/workflows/launchpad-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install launchpad
4242
run: bun install -g launchpad
4343

44-
- name: Install pkgx
44+
- name: Launchpad Bootstrap
4545
run: launchpad bootstrap --verbose
4646

4747
- name: Install dev package (if required)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Bootstrap your development environment with everything you need:
116116
```
117117

118118
The bootstrap command sets up your entire development foundation:
119-
- ✅ Install pkgx (package manager)
119+
120120
- ✅ Install Bun (JavaScript runtime)
121121
- ✅ Configure your PATH automatically
122122
- ✅ Set up shell integration for project auto-activation

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ launchpad bootstrap --force
8181
```
8282

8383
The bootstrap command will:
84-
- ✅ Install pkgx (package manager)
84+
8585
- ✅ Install Bun (JavaScript runtime)
8686
- ✅ Configure your PATH
8787
- ✅ Set up shell integration for auto-activation

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ launchpad bootstrap --verbose
3333
```
3434

3535
This command will:
36-
- ✅ Install pkgx (the underlying package manager)
36+
3737
- ✅ Install Bun (JavaScript runtime)
3838
- ✅ Configure your PATH automatically
3939
- ✅ Set up shell integration for automatic environment activation

packages/action/src/index.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ export async function run(): Promise<void> {
2929
// Install launchpad
3030
await installLaunchpad()
3131

32-
// Install pkgx
33-
await installPkgx()
34-
3532
// Install dependencies
3633
if (inputs.packages) {
3734
await installSpecifiedPackages(inputs.packages)
@@ -93,24 +90,6 @@ async function installLaunchpad(): Promise<void> {
9390
core.info('launchpad installation completed')
9491
}
9592

96-
/**
97-
* Install pkgx using launchpad
98-
*/
99-
async function installPkgx(): Promise<void> {
100-
core.info('Installing pkgx...')
101-
102-
const options = {
103-
env: {
104-
...process.env,
105-
LAUNCHPAD_VERBOSE: 'true',
106-
CONTEXT: JSON.stringify(github.context),
107-
},
108-
}
109-
110-
await exec.exec('launchpad', ['pkgx', '--verbose'], options)
111-
core.info('pkgx installation completed')
112-
}
113-
11493
/**
11594
* Install specified packages
11695
*/

packages/launchpad/README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,6 @@ launchpad shim node@22 [email protected]
8484
launchpad shim --path ~/bin node@22
8585
```
8686

87-
### Install pkgx
88-
89-
```bash
90-
# Install pkgx itself
91-
launchpad bootstrap
92-
93-
# Force reinstall
94-
launchpad bootstrap --force
95-
```
96-
9787
### Install dev package
9888

9989
```bash

0 commit comments

Comments
 (0)