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.
- package/gulp-tasks/modules/dotnet-cli.js +7 -0
- package/package.json +1 -1
- package/types.d.ts +1 -0
|
@@ -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