zarro 1.130.1 → 1.130.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/modules/nuget-push.js +0 -1
- package/package.json +1 -1
- package/types.d.ts +1 -0
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
const errors = e.stderr.join("\n").trim(), isDuplicatePackageError = errors.match(/: 409 /);
|
|
47
47
|
if (isDuplicatePackageError && options.suppressDuplicateError) {
|
|
48
48
|
console.warn(`ignoring duplicate package error: ${errors}`);
|
|
49
|
-
return e;
|
|
50
49
|
}
|
|
51
50
|
}
|
|
52
51
|
throw e;
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -414,6 +414,7 @@ declare global {
|
|
|
414
414
|
|
|
415
415
|
type GitTagFromCsProj = (options?: GitTagOptions) => Stream;
|
|
416
416
|
type GitFetch = (all: boolean) => Promise<void>;
|
|
417
|
+
type NugetPush = (packageFile: string, sourceName?: string, options?: NugetPushOpts) => Promise<void>;
|
|
417
418
|
|
|
418
419
|
interface Log {
|
|
419
420
|
setThreshold(level: number): void;
|