fix(market): expose packaged pnpm services - #109
Closed
citizenll wants to merge 1 commit into
Closed
Conversation
yaojin3616
added a commit
that referenced
this pull request
Aug 21, 2026
yaojin3616
added a commit
that referenced
this pull request
Aug 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
desktopProfilesanddesktopPnpmservices from the built-in market installerdsh-marketLoader entry wait fordesktopProfiles, so compatible releases deterministically select their Desktop adapterRoot cause
#61 made the bundled pnpm executable available, but availability and integration are different layers.
dshmarket >= 1.6.0only bypasses system package-manager probing when the Host exposesdesktopProfilesanddesktopPnpm. Without those services it takes the ordinary DSH path and probes the GUI process's ambientPATH, which is unreliable on Windows and macOS launches.This change fixes the Host contract instead of detecting or modifying npm/pnpm/yarn/bun installations on the user's machine. DSH profile mutations keep using the app's pinned pnpm, preserving its lockfile and reconciliation semantics.
Upgrade and startup analysis
Risk is low for existing installations:
dshmarket >= 1.6.0switches to its supported Desktop path on the next Harness generation while keeping the existingwebprofile directoryThe main behavioral change is intentional: compatible market releases no longer inspect or provision a system package manager.
Validation
npm run typechecknpm test— 26 files, 167 tests passednpm run builddshmarket@1.15.0profile:/dsh-market/statusreturnedpnpm: true,restart: falsedsh --dump-configconfirmed the composeddsh-marketrow waits fordesktopProfilesCloses #53
Addresses #56