zarro 1.199.0 → 1.199.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.
- package/gulp-tasks/default-report-generator.js +1 -1
- package/gulp-tasks/git-submodules.js +1 -1
- package/gulp-tasks/modules/dotnet-cli.js +20 -1222
- package/gulp-tasks/modules/exec.js +2 -3
- package/gulp-tasks/modules/find-local-nuget.js +1 -1
- package/gulp-tasks/modules/gulp-dotnet-cli.js +37 -6
- package/gulp-tasks/modules/gulp-dotnetcover.js +1 -1
- package/gulp-tasks/modules/gulp-nuget-restore.js +1 -1
- package/gulp-tasks/modules/gulp-xbuild.js +1 -1
- package/gulp-tasks/modules/nuget-cli.js +4 -3
- package/gulp-tasks/modules/nuget-push.js +1 -1
- package/gulp-tasks/modules/nuget-update-self.js +4 -4
- package/gulp-tasks/modules/open.js +2 -2
- package/gulp-tasks/modules/resolve-nuget-api-key.js +1 -1
- package/gulp-tasks/modules/spawn-nuget.js +1 -1
- package/gulp-tasks/modules/spawn.js +1 -265
- package/gulp-tasks/modules/streamify.js +2 -22
- package/gulp-tasks/modules/system.js +3 -243
- package/gulp-tasks/modules/test-dotnet-logic.js +2 -2
- package/gulp-tasks/modules/test-zarro.js +1 -1
- package/gulp-tasks/modules/verify-exe.js +1 -1
- package/gulp-tasks/nuget-push.js +1 -1
- package/gulp-tasks/release-npm.js +3 -3
- package/gulp-tasks/release-nuget.js +1 -1
- package/gulp-tasks/start/gulpfile.js +6 -6
- package/gulp-tasks/start-dev-smtp-server.js +2 -2
- package/gulp-tasks/update-self.js +2 -2
- package/gulp-tasks/upgrade-packages.js +1 -1
- package/index-modules/handlers/create-task.js +1 -1
- package/package.json +5 -4
- package/tsconfig.json +2 -1
- package/types.d.ts +71 -276
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
(function () {
|
|
3
|
-
const gulp = requireModule("gulp"), path = require("path"), findTool = requireModule("test-util-finder").findTool, system =
|
|
3
|
+
const gulp = requireModule("gulp"), path = require("path"), findTool = requireModule("test-util-finder").findTool, { system } = require("system-wrapper"), quoteIfRequired = requireModule("quote-if-required"), { rm, mkdir, exists } = require("yafs"), env = requireModule("env");
|
|
4
4
|
env.associate(["COVERAGE_XML", "COVERAGE_REPORTING_EXCLUDE"], "cover-dotnet");
|
|
5
5
|
gulp.task("default-report-generator", `Generates HTML reports from existing coverage XML reports`, async () => {
|
|
6
6
|
const reportGenerator = findTool("ReportGenerator.exe");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
(function () {
|
|
3
|
-
const system =
|
|
3
|
+
const { system } = require("system-wrapper"), path = require("path"), gulp = requireModule("gulp"), log = requireModule("log"), { existsSync, readTextFile, mkdir } = require("yafs"), subModulesFile = ".gitmodules";
|
|
4
4
|
gulp.task("git-submodules", "Updates (with --init) all submodules in tree", function () {
|
|
5
5
|
return system("git", ["submodule", "update", "--init", "--recursive"]);
|
|
6
6
|
});
|