semantic-release-nuget
Version:
A semantic-release plugin for building and publishing NuGet packages.
10 lines • 481 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveOptions = void 0;
function resolveOptions(options, config) {
var _a;
const resolved = Object.assign({ pushUrl: (_a = config.env.NUGET_PUSH_URL) !== null && _a !== void 0 ? _a : "", apiKey: config.env.NUGET_TOKEN, packArguments: [], pushFiles: ["*.nupkg"], debug: false }, options);
return resolved;
}
exports.resolveOptions = resolveOptions;
//# sourceMappingURL=options.js.map