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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.130.1",
3
+ "version": "1.130.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"
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;