dsh-harbor-evolution 0.6.0 → 0.6.1
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/README.md +2 -2
- package/lib/setup.js +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,8 +14,8 @@ npx --yes dsh-harbor-evolution@latest setup --project-root "$PWD"
|
|
|
14
14
|
|
|
15
15
|
The setup command installs both required runtimes:
|
|
16
16
|
|
|
17
|
-
- `harbor-dsh-evolution==0.6.
|
|
18
|
-
- `dsh-harbor-evolution@0.6.
|
|
17
|
+
- `harbor-dsh-evolution==0.6.1` in a managed Python environment.
|
|
18
|
+
- `dsh-harbor-evolution@0.6.1` in the selected DSH profile.
|
|
19
19
|
|
|
20
20
|
It then stores the absolute Harbor executable paths and `projectRoot` in the profile's `harbor-evolution` block and verifies the integration. Existing unrelated profile entries are preserved, and rerunning setup updates the same block.
|
|
21
21
|
|
package/lib/setup.js
CHANGED
|
@@ -267,7 +267,11 @@ export async function setupIntegration(raw = {}, dependencies = {}) {
|
|
|
267
267
|
try {
|
|
268
268
|
await run('pnpm', [
|
|
269
269
|
'--silent', 'dlx', `@deepseek-ai/dsh@${DSH_VERSION}`,
|
|
270
|
-
|
|
270
|
+
// Registry packages ship their built client and need no lifecycle
|
|
271
|
+
// scripts. Skipping scripts also prevents pnpm 11 from reclassifying
|
|
272
|
+
// unrelated DSH native dependencies as newly unapproved builds while
|
|
273
|
+
// adding this plugin to an existing profile.
|
|
274
|
+
'plugin', '--profile', config.profile, 'add', '-w', '--save-exact', '--ignore-scripts', config.pluginSpec,
|
|
271
275
|
], { env: { ...env, DSH_HOME: config.dshHome } })
|
|
272
276
|
} catch (error) {
|
|
273
277
|
throw new Error(processFailure(error))
|