dlw-machine-setup 0.5.15 → 0.5.16
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/bin/installer.js +2 -2
- package/package.json +1 -1
package/bin/installer.js
CHANGED
|
@@ -4049,7 +4049,7 @@ var write_instructions_default = defineStep({
|
|
|
4049
4049
|
when: (ctx) => (ctx.installed.domainsInstalled?.length ?? 0) > 0 || Object.keys(ctx.config.mcpConfig).length > 0 || ctx.installed.factoryInstalled,
|
|
4050
4050
|
execute: async (ctx) => {
|
|
4051
4051
|
const filteredMcpConfig = getFilteredMcpConfig(ctx);
|
|
4052
|
-
const domains = ctx.installed.domainsInstalled;
|
|
4052
|
+
const domains = ctx.installed.domainsInstalled ?? [];
|
|
4053
4053
|
const agent = ctx.config.agent;
|
|
4054
4054
|
const projectPath = ctx.config.projectPath;
|
|
4055
4055
|
const factoryInstalled = ctx.installed.factoryInstalled ?? false;
|
|
@@ -4422,7 +4422,7 @@ var update_gitignore_default = defineStep({
|
|
|
4422
4422
|
var import_fs7 = require("fs");
|
|
4423
4423
|
var import_path7 = require("path");
|
|
4424
4424
|
var import_os2 = require("os");
|
|
4425
|
-
var INSTALLER_VERSION = "0.5.
|
|
4425
|
+
var INSTALLER_VERSION = "0.5.16";
|
|
4426
4426
|
var write_state_default = defineStep({
|
|
4427
4427
|
name: "write-state",
|
|
4428
4428
|
label: "Saving installation state",
|