zarro 1.196.0 → 1.197.0

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.
@@ -1170,6 +1170,13 @@ WARNING: 'dotnet pack' ignores --version-suffix when a nuspec file is provided.
1170
1170
  pushIfSet(args, opts.os, "--os");
1171
1171
  pushFlag(args, opts.disableBuildServers, "--disable-build-servers");
1172
1172
  pushIfSet(args, opts.artifactsPath, "--artifacts-path");
1173
+ const programArgs = opts.args || [];
1174
+ if (programArgs.length) {
1175
+ args.push("--");
1176
+ for (const arg of programArgs) {
1177
+ args.push(q(arg));
1178
+ }
1179
+ }
1173
1180
  return runDotNetWith(args);
1174
1181
  }
1175
1182
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.196.0",
3
+ "version": "1.197.0",
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
@@ -1559,6 +1559,7 @@ declare global {
1559
1559
  os?: string;
1560
1560
  disableBuildServers?: boolean;
1561
1561
  artifactsPath?: string;
1562
+ args?: string[]
1562
1563
  }
1563
1564
 
1564
1565
  interface DotNetNugetPushOptions