Skip to content

Commit 5658e5b

Browse files
committed
chore: wip
1 parent 5298bb7 commit 5658e5b

File tree

7 files changed

+251
-9
lines changed

7 files changed

+251
-9
lines changed

bun.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"packages/action": {
2020
"name": "launchpad-installer",
21-
"version": "0.6.3",
21+
"version": "0.6.4",
2222
"bin": {
2323
"launchpad-installer": "dist/index.js",
2424
},
@@ -35,14 +35,14 @@
3535
},
3636
"packages/launchpad": {
3737
"name": "@stacksjs/launchpad",
38-
"version": "0.6.3",
38+
"version": "0.6.4",
3939
"bin": {
4040
"launchpad": "./dist/bin/cli.js",
4141
},
4242
"dependencies": {
4343
"bunfig": "^0.11.1",
4444
"cac": "^6.7.14",
45-
"ts-pkgx": "0.4.24",
45+
"ts-pkgx": "0.4.30",
4646
},
4747
"devDependencies": {
4848
"bun-plugin-dtsx": "^0.9.5",
@@ -1884,7 +1884,7 @@
18841884

18851885
"ts-declaration-location": ["[email protected]", "", { "dependencies": { "picomatch": "^4.0.2" }, "peerDependencies": { "typescript": ">=4.0.0" } }, "sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA=="],
18861886

1887-
"ts-pkgx": ["[email protected].24", "", { "dependencies": { "chromium-bidi": "^7.2.0", "electron": "^37.2.4", "js-yaml": "^4.1.0", "playwright": "^1.54.1" }, "bin": { "ts-pkgx": "dist/bin/cli.js" } }, "sha512-iTQIQGIrV3A5eulkYmH+zTbtPuncOp+XsoE4WDi8cRb4ioxwPScn+0w/xBN3Suo9/SSupenPTUI3sz8jZooOHw=="],
1887+
"ts-pkgx": ["[email protected].30", "", { "dependencies": { "chromium-bidi": "^7.2.0", "electron": "^37.2.4", "js-yaml": "^4.1.0", "playwright": "^1.54.1" }, "bin": { "ts-pkgx": "dist/bin/cli.js" } }, "sha512-+nGlEMpIz2zZB6p1agtG9z7Jz6i84RR+xxrRAB9j2hhbvLbi3FVcvB2BEslAuBrI4c7EAKSF/+NnzReNj2Y0rQ=="],
18881888

18891889
"tslib": ["[email protected]", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="],
18901890

deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
dependencies:
2-
bun.sh: ^1.2.19
2+
bun.sh: ^1.2.20

launchpad.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { LaunchpadConfig } from './packages/launchpad/src'
22

33
const config: Partial<LaunchpadConfig> = {
4-
verbose: false,
4+
verbose: true,
55
// installationPath will be auto-detected based on permissions
66
// forceReinstall: false, // uncomment to force reinstall of packages when installing
77
shimPath: '~/.local/bin',

packages/launchpad/bin/cli.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,7 @@ async function setupDevelopmentEnvironment(
514514
quiet: options?.quiet || isShellIntegration,
515515
shellOutput: isShellIntegration,
516516
skipGlobal: process.env.NODE_ENV === 'test' || process.env.LAUNCHPAD_SKIP_GLOBAL_AUTO_SCAN === 'true',
517+
verbose: config.verbose,
517518
})
518519
}
519520

@@ -1989,6 +1990,7 @@ cli
19891990
quiet: options?.quiet || isShellIntegration, // Force quiet for shell integration
19901991
shellOutput: isShellIntegration,
19911992
skipGlobal: process.env.NODE_ENV === 'test' || process.env.LAUNCHPAD_SKIP_GLOBAL_AUTO_SCAN === 'true', // Skip global packages only in test mode or when explicitly disabled
1993+
verbose: config.verbose,
19921994
})
19931995
}
19941996
catch (error) {

packages/launchpad/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"dependencies": {
6666
"bunfig": "^0.11.1",
6767
"cac": "^6.7.14",
68-
"ts-pkgx": "0.4.24"
68+
"ts-pkgx": "0.4.30"
6969
},
7070
"devDependencies": {
7171
"bun-plugin-dtsx": "^0.9.5"

0 commit comments

Comments
 (0)