zarro 1.170.26 → 1.171.2
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.
|
@@ -29,6 +29,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
console.log(chalk.yellow(d));
|
|
30
30
|
}
|
|
31
31
|
});
|
|
32
|
+
clearRunningScript();
|
|
32
33
|
});
|
|
33
34
|
});
|
|
34
35
|
}
|
|
@@ -38,6 +39,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
38
39
|
.split(",")
|
|
39
40
|
.includes(k);
|
|
40
41
|
}
|
|
42
|
+
function clearRunningScript() {
|
|
43
|
+
process.env[scriptMarkerVar] = "";
|
|
44
|
+
}
|
|
41
45
|
function storeRunningScript(k) {
|
|
42
46
|
const existing = (process.env[scriptMarkerVar] || ""), update = !!existing
|
|
43
47
|
? `${existing},${k}`
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
}
|
|
49
49
|
const url = generateInterfaceUrlFor(ip, port), { open } = requireModule("open");
|
|
50
50
|
await waitForUrlToBecomeAvailable(url);
|
|
51
|
-
logInfo(`
|
|
52
|
-
Opening the dev smtp interface in your browser (${url})
|
|
53
|
-
To disable this behavior, set env variable ${env.DEV_SMTP_OPEN_INTERFACE}=0
|
|
51
|
+
logInfo(`
|
|
52
|
+
Opening the dev smtp interface in your browser (${url})
|
|
53
|
+
To disable this behavior, set env variable ${env.DEV_SMTP_OPEN_INTERFACE}=0
|
|
54
54
|
`.trim());
|
|
55
55
|
await open(url);
|
|
56
56
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zarro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.171.2",
|
|
4
4
|
"description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zarro": "./index.js"
|
|
@@ -68,7 +68,6 @@
|
|
|
68
68
|
"gulp-dotnet-cli": "^1.1.0",
|
|
69
69
|
"gulp-edit-xml": "^3.1.1",
|
|
70
70
|
"gulp-filter": "^6.0.0",
|
|
71
|
-
"gulp-msbuild": "^0.10.0",
|
|
72
71
|
"lodash.kebabcase": "^4.1.1",
|
|
73
72
|
"node-nuget-client": "^0.12.0",
|
|
74
73
|
"npm-run-all": "^4.1.5",
|
|
@@ -127,6 +126,7 @@
|
|
|
127
126
|
"debugger-is-attached": "^1.2.0",
|
|
128
127
|
"expect-even-more-jest": "^1.15.0",
|
|
129
128
|
"filesystem-sandbox": "^1.20.0",
|
|
129
|
+
"gulp-msbuild": "^0.11.0",
|
|
130
130
|
"ioredis": "^5.3.2",
|
|
131
131
|
"jest": "^29.6.2",
|
|
132
132
|
"nodemon": "^3.0.1",
|