diff --git a/dist/index.js b/dist/index.js index 1be26ae..33a38b8 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 9591: +/***/ 1335: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -36,9 +36,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.FileFinder = void 0; -const glob = __importStar(__nccwpck_require__(7566)); +const glob = __importStar(__nccwpck_require__(1397)); const fs_1 = __nccwpck_require__(5747); -const core_1 = __nccwpck_require__(758); +const core_1 = __nccwpck_require__(8345); const path = __importStar(__nccwpck_require__(5622)); const util_1 = __nccwpck_require__(1669); const stats = util_1.promisify(fs_1.stat); @@ -159,7 +159,7 @@ FileFinder.DefaultGlobOptions = { /***/ }), -/***/ 1082: +/***/ 8938: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -185,8 +185,8 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Inputs = void 0; -const core = __importStar(__nccwpck_require__(758)); -const NoFileOption_1 = __nccwpck_require__(5305); +const core = __importStar(__nccwpck_require__(8345)); +const NoFileOption_1 = __nccwpck_require__(7146); class Inputs { static get ArtifactName() { return core.getInput("name"); @@ -220,7 +220,7 @@ exports.Inputs = Inputs; /***/ }), -/***/ 5305: +/***/ 7146: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -246,7 +246,7 @@ var NoFileOption; /***/ }), -/***/ 7614: +/***/ 6817: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -281,11 +281,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NextcloudArtifact = void 0; -const core = __importStar(__nccwpck_require__(758)); -const FileFinder_1 = __nccwpck_require__(9591); -const Inputs_1 = __nccwpck_require__(1082); -const NextcloudClient_1 = __nccwpck_require__(6228); -const NoFileOption_1 = __nccwpck_require__(5305); +const core = __importStar(__nccwpck_require__(8345)); +const FileFinder_1 = __nccwpck_require__(1335); +const Inputs_1 = __nccwpck_require__(8938); +const NextcloudClient_1 = __nccwpck_require__(2333); +const NoFileOption_1 = __nccwpck_require__(7146); class NextcloudArtifact { constructor(name, path, errorBehavior) { this.name = name; @@ -342,7 +342,7 @@ exports.NextcloudArtifact = NextcloudArtifact; /***/ }), -/***/ 6228: +/***/ 2333: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -382,13 +382,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NextcloudClient = void 0; const fsSync = __importStar(__nccwpck_require__(5747)); const path = __importStar(__nccwpck_require__(5622)); -const core = __importStar(__nccwpck_require__(758)); +const core = __importStar(__nccwpck_require__(8345)); const os = __importStar(__nccwpck_require__(2087)); -const archiver = __importStar(__nccwpck_require__(371)); -const node_fetch_1 = __importDefault(__nccwpck_require__(3902)); -const Inputs_1 = __nccwpck_require__(1082); -const btoa_1 = __importDefault(__nccwpck_require__(68)); -const uuid_1 = __nccwpck_require__(7273); +const archiver = __importStar(__nccwpck_require__(344)); +const node_fetch_1 = __importDefault(__nccwpck_require__(9306)); +const Inputs_1 = __nccwpck_require__(8938); +const btoa_1 = __importDefault(__nccwpck_require__(9478)); +const uuid_1 = __nccwpck_require__(8910); const fs = fsSync.promises; class NextcloudClient { constructor(endpoint, artifact, rootDirectory) { @@ -479,9 +479,11 @@ class NextcloudClient { const copies = []; for (let spec of specs) { const dstpath = path.join(artifactPath, spec.uploadPath); - const promise = fs.mkdir(path.dirname(dstpath)) - .then(() => fs.copyFile(spec.absolutePath, dstpath)); - copies.push(promise); + const dstDir = path.dirname(dstpath); + if (!fsSync.existsSync(dstDir)) { + yield fs.mkdir(dstDir, { recursive: true }); + } + copies.push(fs.copyFile(spec.absolutePath, dstpath)); } yield Promise.all(copies); const archivePath = path.join(artifactPath, `${this.artifact}.zip`); @@ -537,7 +539,7 @@ exports.NextcloudClient = NextcloudClient; /***/ }), -/***/ 5265: +/***/ 7888: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -564,7 +566,7 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.issue = exports.issueCommand = void 0; const os = __importStar(__nccwpck_require__(2087)); -const utils_1 = __nccwpck_require__(2555); +const utils_1 = __nccwpck_require__(8863); /** * Commands * @@ -636,7 +638,7 @@ function escapeProperty(s) { /***/ }), -/***/ 758: +/***/ 8345: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -671,9 +673,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; -const command_1 = __nccwpck_require__(5265); -const file_command_1 = __nccwpck_require__(3995); -const utils_1 = __nccwpck_require__(2555); +const command_1 = __nccwpck_require__(7888); +const file_command_1 = __nccwpck_require__(9825); +const utils_1 = __nccwpck_require__(8863); const os = __importStar(__nccwpck_require__(2087)); const path = __importStar(__nccwpck_require__(5622)); /** @@ -922,7 +924,7 @@ exports.getState = getState; /***/ }), -/***/ 3995: +/***/ 9825: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -953,7 +955,7 @@ exports.issueCommand = void 0; /* eslint-disable @typescript-eslint/no-explicit-any */ const fs = __importStar(__nccwpck_require__(5747)); const os = __importStar(__nccwpck_require__(2087)); -const utils_1 = __nccwpck_require__(2555); +const utils_1 = __nccwpck_require__(8863); function issueCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { @@ -971,7 +973,7 @@ exports.issueCommand = issueCommand; /***/ }), -/***/ 2555: +/***/ 8863: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -998,7 +1000,7 @@ exports.toCommandValue = toCommandValue; /***/ }), -/***/ 7566: +/***/ 1397: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1014,7 +1016,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.create = void 0; -const internal_globber_1 = __nccwpck_require__(2242); +const internal_globber_1 = __nccwpck_require__(1616); /** * Constructs a globber * @@ -1031,7 +1033,7 @@ exports.create = create; /***/ }), -/***/ 896: +/***/ 3897: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1057,7 +1059,7 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getOptions = void 0; -const core = __importStar(__nccwpck_require__(758)); +const core = __importStar(__nccwpck_require__(8345)); /** * Returns a copy with defaults filled in. */ @@ -1088,7 +1090,7 @@ exports.getOptions = getOptions; /***/ }), -/***/ 2242: +/***/ 1616: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1142,14 +1144,14 @@ var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _ar }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DefaultGlobber = void 0; -const core = __importStar(__nccwpck_require__(758)); +const core = __importStar(__nccwpck_require__(8345)); const fs = __importStar(__nccwpck_require__(5747)); -const globOptionsHelper = __importStar(__nccwpck_require__(896)); +const globOptionsHelper = __importStar(__nccwpck_require__(3897)); const path = __importStar(__nccwpck_require__(5622)); -const patternHelper = __importStar(__nccwpck_require__(9771)); -const internal_match_kind_1 = __nccwpck_require__(3628); -const internal_pattern_1 = __nccwpck_require__(696); -const internal_search_state_1 = __nccwpck_require__(6493); +const patternHelper = __importStar(__nccwpck_require__(5678)); +const internal_match_kind_1 = __nccwpck_require__(2544); +const internal_pattern_1 = __nccwpck_require__(3416); +const internal_search_state_1 = __nccwpck_require__(8849); const IS_WINDOWS = process.platform === 'win32'; class DefaultGlobber { constructor(options) { @@ -1330,7 +1332,7 @@ exports.DefaultGlobber = DefaultGlobber; /***/ }), -/***/ 3628: +/***/ 2544: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -1355,7 +1357,7 @@ var MatchKind; /***/ }), -/***/ 214: +/***/ 9387: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1560,7 +1562,7 @@ exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; /***/ }), -/***/ 4924: +/***/ 4718: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1590,7 +1592,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Path = void 0; const path = __importStar(__nccwpck_require__(5622)); -const pathHelper = __importStar(__nccwpck_require__(214)); +const pathHelper = __importStar(__nccwpck_require__(9387)); const assert_1 = __importDefault(__nccwpck_require__(2357)); const IS_WINDOWS = process.platform === 'win32'; /** @@ -1680,7 +1682,7 @@ exports.Path = Path; /***/ }), -/***/ 9771: +/***/ 5678: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1706,8 +1708,8 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.partialMatch = exports.match = exports.getSearchPaths = void 0; -const pathHelper = __importStar(__nccwpck_require__(214)); -const internal_match_kind_1 = __nccwpck_require__(3628); +const pathHelper = __importStar(__nccwpck_require__(9387)); +const internal_match_kind_1 = __nccwpck_require__(2544); const IS_WINDOWS = process.platform === 'win32'; /** * Given an array of patterns, returns an array of paths to search. @@ -1781,7 +1783,7 @@ exports.partialMatch = partialMatch; /***/ }), -/***/ 696: +/***/ 3416: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1812,11 +1814,11 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Pattern = void 0; const os = __importStar(__nccwpck_require__(2087)); const path = __importStar(__nccwpck_require__(5622)); -const pathHelper = __importStar(__nccwpck_require__(214)); +const pathHelper = __importStar(__nccwpck_require__(9387)); const assert_1 = __importDefault(__nccwpck_require__(2357)); -const minimatch_1 = __nccwpck_require__(1079); -const internal_match_kind_1 = __nccwpck_require__(3628); -const internal_path_1 = __nccwpck_require__(4924); +const minimatch_1 = __nccwpck_require__(915); +const internal_match_kind_1 = __nccwpck_require__(2544); +const internal_path_1 = __nccwpck_require__(4718); const IS_WINDOWS = process.platform === 'win32'; class Pattern { constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) { @@ -2043,7 +2045,7 @@ exports.Pattern = Pattern; /***/ }), -/***/ 6493: +/***/ 8849: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2061,7 +2063,7 @@ exports.SearchState = SearchState; /***/ }), -/***/ 6327: +/***/ 5112: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -2071,15 +2073,15 @@ exports.SearchState = SearchState; * Licensed under the MIT license. * https://github.com/archiverjs/node-archiver/blob/master/LICENSE-MIT */ -var fs = __nccwpck_require__(1315); +var fs = __nccwpck_require__(8998); var path = __nccwpck_require__(5622); -var flatten = __nccwpck_require__(6769); -var difference = __nccwpck_require__(1253); -var union = __nccwpck_require__(27); -var isPlainObject = __nccwpck_require__(942); +var flatten = __nccwpck_require__(5971); +var difference = __nccwpck_require__(7305); +var union = __nccwpck_require__(4083); +var isPlainObject = __nccwpck_require__(3271); -var glob = __nccwpck_require__(3804); +var glob = __nccwpck_require__(5033); var file = module.exports = {}; @@ -2277,7 +2279,7 @@ file.normalizeFilesArray = function(data) { /***/ }), -/***/ 3920: +/***/ 7038: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -2287,18 +2289,18 @@ file.normalizeFilesArray = function(data) { * Licensed under the MIT license. * https://github.com/archiverjs/archiver-utils/blob/master/LICENSE */ -var fs = __nccwpck_require__(1315); +var fs = __nccwpck_require__(8998); var path = __nccwpck_require__(5622); var nutil = __nccwpck_require__(1669); -var lazystream = __nccwpck_require__(5100); -var normalizePath = __nccwpck_require__(9322); -var defaults = __nccwpck_require__(8036); +var lazystream = __nccwpck_require__(2085); +var normalizePath = __nccwpck_require__(7978); +var defaults = __nccwpck_require__(3980); var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(3794).PassThrough; +var PassThrough = __nccwpck_require__(4685).PassThrough; var utils = module.exports = {}; -utils.file = __nccwpck_require__(6327); +utils.file = __nccwpck_require__(5112); function assertPath(path) { if (typeof path !== 'string') { @@ -2440,7 +2442,7 @@ utils.walkdir = function(dirpath, base, callback) { /***/ }), -/***/ 4669: +/***/ 748: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2474,7 +2476,7 @@ utils.walkdir = function(dirpath, base, callback) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ /**/ @@ -2489,12 +2491,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ -var Readable = __nccwpck_require__(6251); -var Writable = __nccwpck_require__(7670); +var Readable = __nccwpck_require__(4704); +var Writable = __nccwpck_require__(9824); util.inherits(Duplex, Readable); @@ -2578,7 +2580,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 2637: +/***/ 8887: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2611,11 +2613,11 @@ Duplex.prototype._destroy = function (err, cb) { module.exports = PassThrough; -var Transform = __nccwpck_require__(1005); +var Transform = __nccwpck_require__(7516); /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ util.inherits(PassThrough, Transform); @@ -2632,7 +2634,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 6251: +/***/ 4704: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2661,13 +2663,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(717); +var isArray = __nccwpck_require__(4394); /**/ /**/ @@ -2685,12 +2687,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(3923); +var Stream = __nccwpck_require__(1064); /**/ /**/ -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -2702,8 +2704,8 @@ function _isUint8Array(obj) { /**/ /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ /**/ @@ -2716,8 +2718,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(1652); -var destroyImpl = __nccwpck_require__(5422); +var BufferList = __nccwpck_require__(131); +var destroyImpl = __nccwpck_require__(8333); var StringDecoder; util.inherits(Readable, Stream); @@ -2737,7 +2739,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(4669); + Duplex = Duplex || __nccwpck_require__(748); options = options || {}; @@ -2807,14 +2809,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(7703)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(4669); + Duplex = Duplex || __nccwpck_require__(748); if (!(this instanceof Readable)) return new Readable(options); @@ -2963,7 +2965,7 @@ Readable.prototype.isPaused = function () { // backwards compatibility. Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(7703)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -3658,7 +3660,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 1005: +/***/ 7516: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3729,11 +3731,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(4669); +var Duplex = __nccwpck_require__(748); /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ util.inherits(Transform, Duplex); @@ -3879,7 +3881,7 @@ function done(stream, er, data) { /***/ }), -/***/ 7670: +/***/ 9824: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3912,7 +3914,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ module.exports = Writable; @@ -3949,23 +3951,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(1689) + deprecate: __nccwpck_require__(2065) }; /**/ /**/ -var Stream = __nccwpck_require__(3923); +var Stream = __nccwpck_require__(1064); /**/ /**/ -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -3976,14 +3978,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(5422); +var destroyImpl = __nccwpck_require__(8333); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(4669); + Duplex = Duplex || __nccwpck_require__(748); options = options || {}; @@ -4133,7 +4135,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(4669); + Duplex = Duplex || __nccwpck_require__(748); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -4573,7 +4575,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 1652: +/***/ 131: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4581,7 +4583,7 @@ Writable.prototype._destroy = function (err, cb) { function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -4659,7 +4661,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 5422: +/***/ 8333: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4667,7 +4669,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ // undocumented cb() API, needed for core, not for public API @@ -4740,7 +4742,7 @@ module.exports = { /***/ }), -/***/ 3923: +/***/ 1064: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -4748,7 +4750,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 3794: +/***/ 4685: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -4762,19 +4764,19 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { exports.PassThrough = Stream.PassThrough; exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(6251); + exports = module.exports = __nccwpck_require__(4704); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(7670); - exports.Duplex = __nccwpck_require__(4669); - exports.Transform = __nccwpck_require__(1005); - exports.PassThrough = __nccwpck_require__(2637); + exports.Writable = __nccwpck_require__(9824); + exports.Duplex = __nccwpck_require__(748); + exports.Transform = __nccwpck_require__(7516); + exports.PassThrough = __nccwpck_require__(8887); } /***/ }), -/***/ 371: +/***/ 344: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -4784,7 +4786,7 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE} * @copyright (c) 2012-2014 Chris Talkington, contributors. */ -var Archiver = __nccwpck_require__(2346); +var Archiver = __nccwpck_require__(8080); var formats = {}; @@ -4856,15 +4858,15 @@ vending.isRegisteredFormat = function (format) { return false; }; -vending.registerFormat('zip', __nccwpck_require__(6403)); -vending.registerFormat('tar', __nccwpck_require__(7431)); -vending.registerFormat('json', __nccwpck_require__(9846)); +vending.registerFormat('zip', __nccwpck_require__(8002)); +vending.registerFormat('tar', __nccwpck_require__(6557)); +vending.registerFormat('json', __nccwpck_require__(4693)); module.exports = vending; /***/ }), -/***/ 2346: +/***/ 8080: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -4875,14 +4877,14 @@ module.exports = vending; * @copyright (c) 2012-2014 Chris Talkington, contributors. */ var fs = __nccwpck_require__(5747); -var glob = __nccwpck_require__(7320); -var async = __nccwpck_require__(1924); +var glob = __nccwpck_require__(1516); +var async = __nccwpck_require__(6376); var path = __nccwpck_require__(5622); -var util = __nccwpck_require__(3920); +var util = __nccwpck_require__(7038); var inherits = __nccwpck_require__(1669).inherits; -var ArchiverError = __nccwpck_require__(5704); -var Transform = __nccwpck_require__(3728).Transform; +var ArchiverError = __nccwpck_require__(8070); +var Transform = __nccwpck_require__(5464).Transform; var win32 = process.platform === 'win32'; @@ -5845,7 +5847,7 @@ module.exports = Archiver; /***/ }), -/***/ 5704: +/***/ 8070: /***/ ((module, exports, __nccwpck_require__) => { /** @@ -5891,7 +5893,7 @@ exports = module.exports = ArchiverError; /***/ }), -/***/ 9846: +/***/ 4693: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -5902,10 +5904,10 @@ exports = module.exports = ArchiverError; * @copyright (c) 2012-2014 Chris Talkington, contributors. */ var inherits = __nccwpck_require__(1669).inherits; -var Transform = __nccwpck_require__(3728).Transform; +var Transform = __nccwpck_require__(5464).Transform; -var crc32 = __nccwpck_require__(9651); -var util = __nccwpck_require__(3920); +var crc32 = __nccwpck_require__(7168); +var util = __nccwpck_require__(7038); /** * @constructor @@ -6008,7 +6010,7 @@ module.exports = Json; /***/ }), -/***/ 7431: +/***/ 6557: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6020,8 +6022,8 @@ module.exports = Json; */ var zlib = __nccwpck_require__(8761); -var engine = __nccwpck_require__(4390); -var util = __nccwpck_require__(3920); +var engine = __nccwpck_require__(8446); +var util = __nccwpck_require__(7038); /** * @constructor @@ -6182,7 +6184,7 @@ module.exports = Tar; /***/ }), -/***/ 6403: +/***/ 8002: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6192,8 +6194,8 @@ module.exports = Tar; * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE} * @copyright (c) 2012-2014 Chris Talkington, contributors. */ -var engine = __nccwpck_require__(2958); -var util = __nccwpck_require__(3920); +var engine = __nccwpck_require__(8401); +var util = __nccwpck_require__(7038); /** * @constructor @@ -6309,7 +6311,7 @@ module.exports = Zip; /***/ }), -/***/ 1924: +/***/ 6376: /***/ (function(__unused_webpack_module, exports) { (function (global, factory) { @@ -11161,7 +11163,7 @@ module.exports = Zip; /***/ }), -/***/ 3592: +/***/ 5851: /***/ ((module) => { "use strict"; @@ -11231,7 +11233,7 @@ function range(a, b, str) { /***/ }), -/***/ 3304: +/***/ 4672: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -11635,15 +11637,15 @@ module.exports = BufferList /***/ }), -/***/ 9173: +/***/ 8713: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const DuplexStream = __nccwpck_require__(3728).Duplex -const inherits = __nccwpck_require__(6706) -const BufferList = __nccwpck_require__(3304) +const DuplexStream = __nccwpck_require__(5464).Duplex +const inherits = __nccwpck_require__(6665) +const BufferList = __nccwpck_require__(4672) function BufferListStream (callback) { if (!(this instanceof BufferListStream)) { @@ -11727,11 +11729,11 @@ module.exports.BufferList = BufferList /***/ }), -/***/ 2526: +/***/ 5613: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var concatMap = __nccwpck_require__(5215); -var balanced = __nccwpck_require__(3592); +var concatMap = __nccwpck_require__(172); +var balanced = __nccwpck_require__(5851); module.exports = expandTop; @@ -11935,7 +11937,7 @@ function expand(str, isTop) { /***/ }), -/***/ 68: +/***/ 9478: /***/ ((module) => { (function () { @@ -11959,7 +11961,7 @@ function expand(str, isTop) { /***/ }), -/***/ 9651: +/***/ 7168: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Buffer = __nccwpck_require__(4293).Buffer; @@ -12077,7 +12079,7 @@ module.exports = crc32; /***/ }), -/***/ 9841: +/***/ 4677: /***/ ((module) => { /** @@ -12099,7 +12101,7 @@ ArchiveEntry.prototype.isDirectory = function() {}; /***/ }), -/***/ 7498: +/***/ 9092: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12110,10 +12112,10 @@ ArchiveEntry.prototype.isDirectory = function() {}; * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ var inherits = __nccwpck_require__(1669).inherits; -var Transform = __nccwpck_require__(3728).Transform; +var Transform = __nccwpck_require__(5464).Transform; -var ArchiveEntry = __nccwpck_require__(9841); -var util = __nccwpck_require__(2767); +var ArchiveEntry = __nccwpck_require__(4677); +var util = __nccwpck_require__(9260); var ArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ArchiveOutputStream)) { @@ -12222,7 +12224,7 @@ ArchiveOutputStream.prototype.write = function(chunk, cb) { /***/ }), -/***/ 1837: +/***/ 6119: /***/ ((module) => { /** @@ -12300,7 +12302,7 @@ module.exports = { /***/ }), -/***/ 9547: +/***/ 4110: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12310,7 +12312,7 @@ module.exports = { * Licensed under the MIT license. * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ -var zipUtil = __nccwpck_require__(7742); +var zipUtil = __nccwpck_require__(9821); var DATA_DESCRIPTOR_FLAG = 1 << 3; var ENCRYPTION_FLAG = 1 << 0; @@ -12407,7 +12409,7 @@ GeneralPurposeBit.prototype.usesUTF8ForNames = function() { /***/ }), -/***/ 8610: +/***/ 909: /***/ ((module) => { /** @@ -12466,7 +12468,7 @@ module.exports = { /***/ }), -/***/ 7742: +/***/ 9821: /***/ ((module) => { /** @@ -12546,7 +12548,7 @@ util.toDosTime = function(d) { /***/ }), -/***/ 7565: +/***/ 8498: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12557,14 +12559,14 @@ util.toDosTime = function(d) { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ var inherits = __nccwpck_require__(1669).inherits; -var normalizePath = __nccwpck_require__(9322); +var normalizePath = __nccwpck_require__(7978); -var ArchiveEntry = __nccwpck_require__(9841); -var GeneralPurposeBit = __nccwpck_require__(9547); -var UnixStat = __nccwpck_require__(8610); +var ArchiveEntry = __nccwpck_require__(4677); +var GeneralPurposeBit = __nccwpck_require__(4110); +var UnixStat = __nccwpck_require__(909); -var constants = __nccwpck_require__(1837); -var zipUtil = __nccwpck_require__(7742); +var constants = __nccwpck_require__(6119); +var zipUtil = __nccwpck_require__(9821); var ZipArchiveEntry = module.exports = function(name) { if (!(this instanceof ZipArchiveEntry)) { @@ -12966,7 +12968,7 @@ ZipArchiveEntry.prototype.isZip64 = function() { /***/ }), -/***/ 1027: +/***/ 3178: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12977,17 +12979,17 @@ ZipArchiveEntry.prototype.isZip64 = function() { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ var inherits = __nccwpck_require__(1669).inherits; -var crc32 = __nccwpck_require__(9651); -var {CRC32Stream} = __nccwpck_require__(8373); -var {DeflateCRC32Stream} = __nccwpck_require__(8373); +var crc32 = __nccwpck_require__(7168); +var {CRC32Stream} = __nccwpck_require__(2582); +var {DeflateCRC32Stream} = __nccwpck_require__(2582); -var ArchiveOutputStream = __nccwpck_require__(7498); -var ZipArchiveEntry = __nccwpck_require__(7565); -var GeneralPurposeBit = __nccwpck_require__(9547); +var ArchiveOutputStream = __nccwpck_require__(9092); +var ZipArchiveEntry = __nccwpck_require__(8498); +var GeneralPurposeBit = __nccwpck_require__(4110); -var constants = __nccwpck_require__(1837); -var util = __nccwpck_require__(2767); -var zipUtil = __nccwpck_require__(7742); +var constants = __nccwpck_require__(6119); +var util = __nccwpck_require__(9260); +var zipUtil = __nccwpck_require__(9821); var ZipArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ZipArchiveOutputStream)) { @@ -13413,7 +13415,7 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { /***/ }), -/***/ 1121: +/***/ 5687: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -13424,15 +13426,15 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ module.exports = { - ArchiveEntry: __nccwpck_require__(9841), - ZipArchiveEntry: __nccwpck_require__(7565), - ArchiveOutputStream: __nccwpck_require__(7498), - ZipArchiveOutputStream: __nccwpck_require__(1027) + ArchiveEntry: __nccwpck_require__(4677), + ZipArchiveEntry: __nccwpck_require__(8498), + ArchiveOutputStream: __nccwpck_require__(9092), + ZipArchiveOutputStream: __nccwpck_require__(3178) }; /***/ }), -/***/ 2767: +/***/ 9260: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -13443,7 +13445,7 @@ module.exports = { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(3728).PassThrough; +var PassThrough = __nccwpck_require__(5464).PassThrough; var util = module.exports = {}; @@ -13468,7 +13470,7 @@ util.normalizeInputSource = function(source) { /***/ }), -/***/ 5215: +/***/ 172: /***/ ((module) => { module.exports = function (xs, fn) { @@ -13488,7 +13490,7 @@ var isArray = Array.isArray || function (xs) { /***/ }), -/***/ 4613: +/***/ 9837: /***/ ((__unused_webpack_module, exports) => { // Copyright Joyent, Inc. and other Node contributors. @@ -13602,7 +13604,7 @@ function objectToString(o) { /***/ }), -/***/ 8542: +/***/ 768: /***/ ((__unused_webpack_module, exports) => { /* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */ @@ -13719,7 +13721,7 @@ CRC32.str = crc32_str; /***/ }), -/***/ 9827: +/***/ 4593: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13733,9 +13735,9 @@ CRC32.str = crc32_str; -const {Transform} = __nccwpck_require__(3728); +const {Transform} = __nccwpck_require__(5464); -const crc32 = __nccwpck_require__(8542); +const crc32 = __nccwpck_require__(768); class CRC32Stream extends Transform { constructor(options) { @@ -13775,7 +13777,7 @@ module.exports = CRC32Stream; /***/ }), -/***/ 3355: +/***/ 9430: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13791,7 +13793,7 @@ module.exports = CRC32Stream; const {DeflateRaw} = __nccwpck_require__(8761); -const crc32 = __nccwpck_require__(8542); +const crc32 = __nccwpck_require__(768); class DeflateCRC32Stream extends DeflateRaw { constructor(options) { @@ -13845,7 +13847,7 @@ module.exports = DeflateCRC32Stream; /***/ }), -/***/ 8373: +/***/ 2582: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13860,17 +13862,17 @@ module.exports = DeflateCRC32Stream; module.exports = { - CRC32Stream: __nccwpck_require__(9827), - DeflateCRC32Stream: __nccwpck_require__(3355) + CRC32Stream: __nccwpck_require__(4593), + DeflateCRC32Stream: __nccwpck_require__(9430) } /***/ }), -/***/ 971: +/***/ 1305: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var once = __nccwpck_require__(3883); +var once = __nccwpck_require__(8737); var noop = function() {}; @@ -13968,7 +13970,7 @@ module.exports = eos; /***/ }), -/***/ 3545: +/***/ 3722: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(5747).constants || __nccwpck_require__(7619) @@ -13976,7 +13978,7 @@ module.exports = __nccwpck_require__(5747).constants || __nccwpck_require__(7619 /***/ }), -/***/ 9516: +/***/ 7913: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = realpath @@ -13992,7 +13994,7 @@ var origRealpathSync = fs.realpathSync var version = process.version var ok = /^v[0-5]\./.test(version) -var old = __nccwpck_require__(4974) +var old = __nccwpck_require__(5962) function newError (er) { return er && er.syscall === 'realpath' && ( @@ -14049,7 +14051,7 @@ function unmonkeypatch () { /***/ }), -/***/ 4974: +/***/ 5962: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { // Copyright Joyent, Inc. and other Node contributors. @@ -14359,7 +14361,7 @@ exports.realpath = function realpath(p, cache, cb) { /***/ }), -/***/ 8092: +/***/ 1636: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { exports.setopts = setopts @@ -14375,8 +14377,8 @@ function ownProp (obj, field) { } var path = __nccwpck_require__(5622) -var minimatch = __nccwpck_require__(1079) -var isAbsolute = __nccwpck_require__(755) +var minimatch = __nccwpck_require__(915) +var isAbsolute = __nccwpck_require__(4125) var Minimatch = minimatch.Minimatch function alphasort (a, b) { @@ -14600,7 +14602,7 @@ function childrenIgnored (self, path) { /***/ }), -/***/ 3804: +/***/ 5033: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // Approach: @@ -14646,24 +14648,24 @@ function childrenIgnored (self, path) { module.exports = glob var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(9516) -var minimatch = __nccwpck_require__(1079) +var rp = __nccwpck_require__(7913) +var minimatch = __nccwpck_require__(915) var Minimatch = minimatch.Minimatch -var inherits = __nccwpck_require__(6706) +var inherits = __nccwpck_require__(6665) var EE = __nccwpck_require__(8614).EventEmitter var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(755) -var globSync = __nccwpck_require__(6401) -var common = __nccwpck_require__(8092) +var isAbsolute = __nccwpck_require__(4125) +var globSync = __nccwpck_require__(4402) +var common = __nccwpck_require__(1636) var setopts = common.setopts var ownProp = common.ownProp -var inflight = __nccwpck_require__(8679) +var inflight = __nccwpck_require__(3340) var util = __nccwpck_require__(1669) var childrenIgnored = common.childrenIgnored var isIgnored = common.isIgnored -var once = __nccwpck_require__(3883) +var once = __nccwpck_require__(8737) function glob (pattern, options, cb) { if (typeof options === 'function') cb = options, options = {} @@ -15395,22 +15397,22 @@ Glob.prototype._stat2 = function (f, abs, er, stat, cb) { /***/ }), -/***/ 6401: +/***/ 4402: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = globSync globSync.GlobSync = GlobSync var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(9516) -var minimatch = __nccwpck_require__(1079) +var rp = __nccwpck_require__(7913) +var minimatch = __nccwpck_require__(915) var Minimatch = minimatch.Minimatch -var Glob = __nccwpck_require__(3804).Glob +var Glob = __nccwpck_require__(5033).Glob var util = __nccwpck_require__(1669) var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(755) -var common = __nccwpck_require__(8092) +var isAbsolute = __nccwpck_require__(4125) +var common = __nccwpck_require__(1636) var setopts = common.setopts var ownProp = common.ownProp var childrenIgnored = common.childrenIgnored @@ -15886,7 +15888,7 @@ GlobSync.prototype._makeAbs = function (f) { /***/ }), -/***/ 9049: +/***/ 2805: /***/ ((module) => { "use strict"; @@ -15917,13 +15919,13 @@ function clone (obj) { /***/ }), -/***/ 1315: +/***/ 8998: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var fs = __nccwpck_require__(5747) -var polyfills = __nccwpck_require__(584) -var legacy = __nccwpck_require__(2005) -var clone = __nccwpck_require__(9049) +var polyfills = __nccwpck_require__(4060) +var legacy = __nccwpck_require__(9469) +var clone = __nccwpck_require__(2805) var util = __nccwpck_require__(1669) @@ -16297,7 +16299,7 @@ function retry () { /***/ }), -/***/ 2005: +/***/ 9469: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413).Stream @@ -16422,7 +16424,7 @@ function legacy (fs) { /***/ }), -/***/ 584: +/***/ 4060: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var constants = __nccwpck_require__(7619) @@ -16775,12 +16777,12 @@ function patch (fs) { /***/ }), -/***/ 8679: +/***/ 3340: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(5463) +var wrappy = __nccwpck_require__(3497) var reqs = Object.create(null) -var once = __nccwpck_require__(3883) +var once = __nccwpck_require__(8737) module.exports = wrappy(inflight) @@ -16836,7 +16838,7 @@ function slice (args) { /***/ }), -/***/ 6706: +/***/ 6665: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { try { @@ -16846,13 +16848,13 @@ try { module.exports = util.inherits; } catch (e) { /* istanbul ignore next */ - module.exports = __nccwpck_require__(1799); + module.exports = __nccwpck_require__(6296); } /***/ }), -/***/ 1799: +/***/ 6296: /***/ ((module) => { if (typeof Object.create === 'function') { @@ -16886,7 +16888,7 @@ if (typeof Object.create === 'function') { /***/ }), -/***/ 717: +/***/ 4394: /***/ ((module) => { var toString = {}.toString; @@ -16898,11 +16900,11 @@ module.exports = Array.isArray || function (arr) { /***/ }), -/***/ 5100: +/***/ 2085: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669); -var PassThrough = __nccwpck_require__(1290); +var PassThrough = __nccwpck_require__(5109); module.exports = { Readable: Readable, @@ -16959,7 +16961,7 @@ function Writable(fn, options) { /***/ }), -/***/ 4814: +/***/ 7215: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -16993,7 +16995,7 @@ function Writable(fn, options) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ /**/ @@ -17008,12 +17010,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ -var Readable = __nccwpck_require__(703); -var Writable = __nccwpck_require__(2157); +var Readable = __nccwpck_require__(4599); +var Writable = __nccwpck_require__(9294); util.inherits(Duplex, Readable); @@ -17097,7 +17099,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 1257: +/***/ 8868: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17130,11 +17132,11 @@ Duplex.prototype._destroy = function (err, cb) { module.exports = PassThrough; -var Transform = __nccwpck_require__(2022); +var Transform = __nccwpck_require__(7135); /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ util.inherits(PassThrough, Transform); @@ -17151,7 +17153,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 703: +/***/ 4599: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17180,13 +17182,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(717); +var isArray = __nccwpck_require__(4394); /**/ /**/ @@ -17204,12 +17206,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(110); +var Stream = __nccwpck_require__(955); /**/ /**/ -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -17221,8 +17223,8 @@ function _isUint8Array(obj) { /**/ /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ /**/ @@ -17235,8 +17237,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(6283); -var destroyImpl = __nccwpck_require__(3766); +var BufferList = __nccwpck_require__(1568); +var destroyImpl = __nccwpck_require__(3555); var StringDecoder; util.inherits(Readable, Stream); @@ -17256,7 +17258,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(4814); + Duplex = Duplex || __nccwpck_require__(7215); options = options || {}; @@ -17326,14 +17328,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(7703)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(4814); + Duplex = Duplex || __nccwpck_require__(7215); if (!(this instanceof Readable)) return new Readable(options); @@ -17482,7 +17484,7 @@ Readable.prototype.isPaused = function () { // backwards compatibility. Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(7703)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -18177,7 +18179,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 2022: +/***/ 7135: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18248,11 +18250,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(4814); +var Duplex = __nccwpck_require__(7215); /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ util.inherits(Transform, Duplex); @@ -18398,7 +18400,7 @@ function done(stream, er, data) { /***/ }), -/***/ 2157: +/***/ 9294: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18431,7 +18433,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ module.exports = Writable; @@ -18468,23 +18470,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(4613)); -util.inherits = __nccwpck_require__(6706); +var util = Object.create(__nccwpck_require__(9837)); +util.inherits = __nccwpck_require__(6665); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(1689) + deprecate: __nccwpck_require__(2065) }; /**/ /**/ -var Stream = __nccwpck_require__(110); +var Stream = __nccwpck_require__(955); /**/ /**/ -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -18495,14 +18497,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(3766); +var destroyImpl = __nccwpck_require__(3555); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(4814); + Duplex = Duplex || __nccwpck_require__(7215); options = options || {}; @@ -18652,7 +18654,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(4814); + Duplex = Duplex || __nccwpck_require__(7215); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -19092,7 +19094,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 6283: +/***/ 1568: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19100,7 +19102,7 @@ Writable.prototype._destroy = function (err, cb) { function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -19178,7 +19180,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 3766: +/***/ 3555: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19186,7 +19188,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(9615); +var pna = __nccwpck_require__(225); /**/ // undocumented cb() API, needed for core, not for public API @@ -19259,7 +19261,7 @@ module.exports = { /***/ }), -/***/ 110: +/***/ 955: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -19267,15 +19269,15 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 1290: +/***/ 5109: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(3256).PassThrough +module.exports = __nccwpck_require__(6309).PassThrough /***/ }), -/***/ 3256: +/***/ 6309: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -19289,19 +19291,19 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { exports.PassThrough = Stream.PassThrough; exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(703); + exports = module.exports = __nccwpck_require__(4599); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(2157); - exports.Duplex = __nccwpck_require__(4814); - exports.Transform = __nccwpck_require__(2022); - exports.PassThrough = __nccwpck_require__(1257); + exports.Writable = __nccwpck_require__(9294); + exports.Duplex = __nccwpck_require__(7215); + exports.Transform = __nccwpck_require__(7135); + exports.PassThrough = __nccwpck_require__(8868); } /***/ }), -/***/ 8036: +/***/ 3980: /***/ ((module) => { /** @@ -19976,7 +19978,7 @@ module.exports = defaults; /***/ }), -/***/ 1253: +/***/ 7305: /***/ ((module) => { /** @@ -21153,7 +21155,7 @@ module.exports = difference; /***/ }), -/***/ 6769: +/***/ 5971: /***/ ((module) => { /** @@ -21509,7 +21511,7 @@ module.exports = flatten; /***/ }), -/***/ 942: +/***/ 3271: /***/ ((module) => { /** @@ -21655,7 +21657,7 @@ module.exports = isPlainObject; /***/ }), -/***/ 27: +/***/ 4083: /***/ ((module) => { /** @@ -22843,7 +22845,7 @@ module.exports = union; /***/ }), -/***/ 1079: +/***/ 915: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = minimatch @@ -22855,7 +22857,7 @@ try { } catch (er) {} var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {} -var expand = __nccwpck_require__(2526) +var expand = __nccwpck_require__(5613) var plTypes = { '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, @@ -23773,7 +23775,7 @@ function regExpEscape (s) { /***/ }), -/***/ 3902: +/***/ 9306: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; @@ -23938,7 +23940,7 @@ FetchError.prototype.name = 'FetchError'; let convert; try { - convert = __nccwpck_require__(1101).convert; + convert = __nccwpck_require__(6339).convert; } catch (e) {} const INTERNALS = Symbol('Body internals'); @@ -25430,7 +25432,7 @@ exports.FetchError = FetchError; /***/ }), -/***/ 9322: +/***/ 7978: /***/ ((module) => { /*! @@ -25472,10 +25474,10 @@ module.exports = function(path, stripTrailing) { /***/ }), -/***/ 3883: +/***/ 8737: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(5463) +var wrappy = __nccwpck_require__(3497) module.exports = wrappy(once) module.exports.strict = wrappy(onceStrict) @@ -25521,7 +25523,7 @@ function onceStrict (fn) { /***/ }), -/***/ 755: +/***/ 4125: /***/ ((module) => { "use strict"; @@ -25549,7 +25551,7 @@ module.exports.win32 = win32; /***/ }), -/***/ 9615: +/***/ 225: /***/ ((module) => { "use strict"; @@ -25602,7 +25604,7 @@ function nextTick(fn, arg1, arg2, arg3) { /***/ }), -/***/ 6098: +/***/ 8152: /***/ ((module) => { "use strict"; @@ -25726,7 +25728,7 @@ module.exports.q = codes; /***/ }), -/***/ 8120: +/***/ 8458: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25771,11 +25773,11 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; -var Readable = __nccwpck_require__(6382); +var Readable = __nccwpck_require__(9667); -var Writable = __nccwpck_require__(1477); +var Writable = __nccwpck_require__(3793); -__nccwpck_require__(6706)(Duplex, Readable); +__nccwpck_require__(6665)(Duplex, Readable); { // Allow the keys array to be GC'ed. @@ -25872,7 +25874,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { /***/ }), -/***/ 4811: +/***/ 7613: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25903,9 +25905,9 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { module.exports = PassThrough; -var Transform = __nccwpck_require__(524); +var Transform = __nccwpck_require__(9282); -__nccwpck_require__(6706)(PassThrough, Transform); +__nccwpck_require__(6665)(PassThrough, Transform); function PassThrough(options) { if (!(this instanceof PassThrough)) return new PassThrough(options); @@ -25918,7 +25920,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 6382: +/***/ 9667: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25963,7 +25965,7 @@ var EElistenerCount = function EElistenerCount(emitter, type) { /**/ -var Stream = __nccwpck_require__(2426); +var Stream = __nccwpck_require__(1605); /**/ @@ -25993,14 +25995,14 @@ if (debugUtil && debugUtil.debuglog) { /**/ -var BufferList = __nccwpck_require__(9864); +var BufferList = __nccwpck_require__(1860); -var destroyImpl = __nccwpck_require__(3202); +var destroyImpl = __nccwpck_require__(6359); -var _require = __nccwpck_require__(7042), +var _require = __nccwpck_require__(7447), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(6098)/* .codes */ .q, +var _require$codes = __nccwpck_require__(8152)/* .codes */ .q, ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, @@ -26011,7 +26013,7 @@ var StringDecoder; var createReadableStreamAsyncIterator; var from; -__nccwpck_require__(6706)(Readable, Stream); +__nccwpck_require__(6665)(Readable, Stream); var errorOrDestroy = destroyImpl.errorOrDestroy; var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume']; @@ -26028,7 +26030,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(8120); + Duplex = Duplex || __nccwpck_require__(8458); options = options || {}; // Duplex streams are both readable and writable, but share // the same options object. // However, some cases require setting options to different @@ -26084,14 +26086,14 @@ function ReadableState(options, stream, isDuplex) { this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(7703)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(8120); + Duplex = Duplex || __nccwpck_require__(8458); if (!(this instanceof Readable)) return new Readable(options); // Checking for a Stream.Duplex instance is faster here instead of inside // the ReadableState constructor, at least with V8 6.5 @@ -26246,7 +26248,7 @@ Readable.prototype.isPaused = function () { Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(7703)/* .StringDecoder */ .s; var decoder = new StringDecoder(enc); this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8 @@ -26930,7 +26932,7 @@ Readable.prototype.wrap = function (stream) { if (typeof Symbol === 'function') { Readable.prototype[Symbol.asyncIterator] = function () { if (createReadableStreamAsyncIterator === undefined) { - createReadableStreamAsyncIterator = __nccwpck_require__(3622); + createReadableStreamAsyncIterator = __nccwpck_require__(4705); } return createReadableStreamAsyncIterator(this); @@ -27032,7 +27034,7 @@ function endReadableNT(state, stream) { if (typeof Symbol === 'function') { Readable.from = function (iterable, opts) { if (from === undefined) { - from = __nccwpck_require__(8500); + from = __nccwpck_require__(6616); } return from(Readable, iterable, opts); @@ -27049,7 +27051,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 524: +/***/ 9282: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27118,15 +27120,15 @@ function indexOf(xs, x) { module.exports = Transform; -var _require$codes = __nccwpck_require__(6098)/* .codes */ .q, +var _require$codes = __nccwpck_require__(8152)/* .codes */ .q, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING, ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0; -var Duplex = __nccwpck_require__(8120); +var Duplex = __nccwpck_require__(8458); -__nccwpck_require__(6706)(Transform, Duplex); +__nccwpck_require__(6665)(Transform, Duplex); function afterTransform(er, data) { var ts = this._transformState; @@ -27257,7 +27259,7 @@ function done(stream, er, data) { /***/ }), -/***/ 1477: +/***/ 3793: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27320,13 +27322,13 @@ Writable.WritableState = WritableState; /**/ var internalUtil = { - deprecate: __nccwpck_require__(1689) + deprecate: __nccwpck_require__(2065) }; /**/ /**/ -var Stream = __nccwpck_require__(2426); +var Stream = __nccwpck_require__(1605); /**/ @@ -27342,12 +27344,12 @@ function _isUint8Array(obj) { return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; } -var destroyImpl = __nccwpck_require__(3202); +var destroyImpl = __nccwpck_require__(6359); -var _require = __nccwpck_require__(7042), +var _require = __nccwpck_require__(7447), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(6098)/* .codes */ .q, +var _require$codes = __nccwpck_require__(8152)/* .codes */ .q, ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, @@ -27359,12 +27361,12 @@ var _require$codes = __nccwpck_require__(6098)/* .codes */ .q, var errorOrDestroy = destroyImpl.errorOrDestroy; -__nccwpck_require__(6706)(Writable, Stream); +__nccwpck_require__(6665)(Writable, Stream); function nop() {} function WritableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(8120); + Duplex = Duplex || __nccwpck_require__(8458); options = options || {}; // Duplex streams are both readable and writable, but share // the same options object. // However, some cases require setting options to different @@ -27490,7 +27492,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(8120); // Writable ctor is applied to Duplexes, too. + Duplex = Duplex || __nccwpck_require__(8458); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` // would return false, as no `_writableState` property is attached. // Trying to use the custom `instanceof` for Writable here will also break the @@ -27961,7 +27963,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 3622: +/***/ 4705: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27971,7 +27973,7 @@ var _Object$setPrototypeO; function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } -var finished = __nccwpck_require__(9335); +var finished = __nccwpck_require__(5312); var kLastResolve = Symbol('lastResolve'); var kLastReject = Symbol('lastReject'); @@ -28175,7 +28177,7 @@ module.exports = createReadableStreamAsyncIterator; /***/ }), -/***/ 9864: +/***/ 1860: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28392,7 +28394,7 @@ function () { /***/ }), -/***/ 3202: +/***/ 6359: /***/ ((module) => { "use strict"; @@ -28504,7 +28506,7 @@ module.exports = { /***/ }), -/***/ 9335: +/***/ 5312: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28512,7 +28514,7 @@ module.exports = { // permission from the author, Mathias Buus (@mafintosh). -var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(6098)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; +var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(8152)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; function once(callback) { var called = false; @@ -28615,7 +28617,7 @@ module.exports = eos; /***/ }), -/***/ 8500: +/***/ 6616: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28631,7 +28633,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } -var ERR_INVALID_ARG_TYPE = __nccwpck_require__(6098)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; +var ERR_INVALID_ARG_TYPE = __nccwpck_require__(8152)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; function from(Readable, iterable, opts) { var iterator; @@ -28686,7 +28688,7 @@ module.exports = from; /***/ }), -/***/ 1818: +/***/ 872: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28705,7 +28707,7 @@ function once(callback) { }; } -var _require$codes = __nccwpck_require__(6098)/* .codes */ .q, +var _require$codes = __nccwpck_require__(8152)/* .codes */ .q, ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED; @@ -28724,7 +28726,7 @@ function destroyer(stream, reading, writing, callback) { stream.on('close', function () { closed = true; }); - if (eos === undefined) eos = __nccwpck_require__(9335); + if (eos === undefined) eos = __nccwpck_require__(5312); eos(stream, { readable: reading, writable: writing @@ -28790,13 +28792,13 @@ module.exports = pipeline; /***/ }), -/***/ 7042: +/***/ 7447: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var ERR_INVALID_OPT_VALUE = __nccwpck_require__(6098)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE; +var ERR_INVALID_OPT_VALUE = __nccwpck_require__(8152)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE; function highWaterMarkFrom(options, isDuplex, duplexKey) { return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null; @@ -28824,7 +28826,7 @@ module.exports = { /***/ }), -/***/ 2426: +/***/ 1605: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -28832,7 +28834,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 3728: +/***/ 5464: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -28841,28 +28843,28 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { Object.assign(module.exports, Stream); module.exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(6382); + exports = module.exports = __nccwpck_require__(9667); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(1477); - exports.Duplex = __nccwpck_require__(8120); - exports.Transform = __nccwpck_require__(524); - exports.PassThrough = __nccwpck_require__(4811); - exports.finished = __nccwpck_require__(9335); - exports.pipeline = __nccwpck_require__(1818); + exports.Writable = __nccwpck_require__(3793); + exports.Duplex = __nccwpck_require__(8458); + exports.Transform = __nccwpck_require__(9282); + exports.PassThrough = __nccwpck_require__(7613); + exports.finished = __nccwpck_require__(5312); + exports.pipeline = __nccwpck_require__(872); } /***/ }), -/***/ 7320: +/***/ 1516: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = readdirGlob; const fs = __nccwpck_require__(5747); const { EventEmitter } = __nccwpck_require__(8614); -const { Minimatch } = __nccwpck_require__(1079); +const { Minimatch } = __nccwpck_require__(915); const { resolve } = __nccwpck_require__(5622); function readdir(dir, strict) { @@ -29104,7 +29106,7 @@ readdirGlob.ReaddirGlob = ReaddirGlob; /***/ }), -/***/ 2516: +/***/ 8562: /***/ ((module, exports, __nccwpck_require__) => { /* eslint-disable node/no-deprecated-api */ @@ -29173,7 +29175,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /***/ }), -/***/ 9171: +/***/ 7703: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -29202,7 +29204,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /**/ -var Buffer = __nccwpck_require__(2516).Buffer; +var Buffer = __nccwpck_require__(8562).Buffer; /**/ var isEncoding = Buffer.isEncoding || function (encoding) { @@ -29476,15 +29478,15 @@ function simpleEnd(buf) { /***/ }), -/***/ 3943: +/***/ 9123: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669) -var bl = __nccwpck_require__(9173) -var headers = __nccwpck_require__(2336) +var bl = __nccwpck_require__(8713) +var headers = __nccwpck_require__(2380) -var Writable = __nccwpck_require__(3728).Writable -var PassThrough = __nccwpck_require__(3728).PassThrough +var Writable = __nccwpck_require__(5464).Writable +var PassThrough = __nccwpck_require__(5464).PassThrough var noop = function () {} @@ -29740,7 +29742,7 @@ module.exports = Extract /***/ }), -/***/ 2336: +/***/ 2380: /***/ ((__unused_webpack_module, exports) => { var alloc = Buffer.alloc @@ -30042,28 +30044,28 @@ exports.decode = function (buf, filenameEncoding, allowUnknownFormat) { /***/ }), -/***/ 4390: +/***/ 8446: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -exports.extract = __nccwpck_require__(3943) -exports.pack = __nccwpck_require__(853) +exports.extract = __nccwpck_require__(9123) +exports.pack = __nccwpck_require__(843) /***/ }), -/***/ 853: +/***/ 843: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var constants = __nccwpck_require__(3545) -var eos = __nccwpck_require__(971) -var inherits = __nccwpck_require__(6706) +var constants = __nccwpck_require__(3722) +var eos = __nccwpck_require__(1305) +var inherits = __nccwpck_require__(6665) var alloc = Buffer.alloc -var Readable = __nccwpck_require__(3728).Readable -var Writable = __nccwpck_require__(3728).Writable +var Readable = __nccwpck_require__(5464).Readable +var Writable = __nccwpck_require__(5464).Writable var StringDecoder = __nccwpck_require__(4304).StringDecoder -var headers = __nccwpck_require__(2336) +var headers = __nccwpck_require__(2380) var DMODE = parseInt('755', 8) var FMODE = parseInt('644', 8) @@ -30313,7 +30315,7 @@ module.exports = Pack /***/ }), -/***/ 1689: +/***/ 2065: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -30326,7 +30328,7 @@ module.exports = __nccwpck_require__(1669).deprecate; /***/ }), -/***/ 7273: +/***/ 8910: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30390,29 +30392,29 @@ Object.defineProperty(exports, "parse", ({ } })); -var _v = _interopRequireDefault(__nccwpck_require__(5093)); +var _v = _interopRequireDefault(__nccwpck_require__(3604)); -var _v2 = _interopRequireDefault(__nccwpck_require__(7599)); +var _v2 = _interopRequireDefault(__nccwpck_require__(8356)); -var _v3 = _interopRequireDefault(__nccwpck_require__(3033)); +var _v3 = _interopRequireDefault(__nccwpck_require__(3753)); -var _v4 = _interopRequireDefault(__nccwpck_require__(1304)); +var _v4 = _interopRequireDefault(__nccwpck_require__(5855)); -var _nil = _interopRequireDefault(__nccwpck_require__(2956)); +var _nil = _interopRequireDefault(__nccwpck_require__(3386)); -var _version = _interopRequireDefault(__nccwpck_require__(7776)); +var _version = _interopRequireDefault(__nccwpck_require__(3950)); -var _validate = _interopRequireDefault(__nccwpck_require__(7866)); +var _validate = _interopRequireDefault(__nccwpck_require__(7512)); -var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); +var _stringify = _interopRequireDefault(__nccwpck_require__(7607)); -var _parse = _interopRequireDefault(__nccwpck_require__(3522)); +var _parse = _interopRequireDefault(__nccwpck_require__(183)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /***/ }), -/***/ 7611: +/***/ 3397: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30442,7 +30444,7 @@ exports.default = _default; /***/ }), -/***/ 2956: +/***/ 3386: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -30457,7 +30459,7 @@ exports.default = _default; /***/ }), -/***/ 3522: +/***/ 183: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30468,7 +30470,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(7866)); +var _validate = _interopRequireDefault(__nccwpck_require__(7512)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30509,7 +30511,7 @@ exports.default = _default; /***/ }), -/***/ 8164: +/***/ 8344: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -30524,7 +30526,7 @@ exports.default = _default; /***/ }), -/***/ 4485: +/***/ 8483: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30555,7 +30557,7 @@ function rng() { /***/ }), -/***/ 7530: +/***/ 135: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30585,7 +30587,7 @@ exports.default = _default; /***/ }), -/***/ 4402: +/***/ 7607: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30596,7 +30598,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(7866)); +var _validate = _interopRequireDefault(__nccwpck_require__(7512)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30631,7 +30633,7 @@ exports.default = _default; /***/ }), -/***/ 5093: +/***/ 3604: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30642,9 +30644,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(4485)); +var _rng = _interopRequireDefault(__nccwpck_require__(8483)); -var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); +var _stringify = _interopRequireDefault(__nccwpck_require__(7607)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30745,7 +30747,7 @@ exports.default = _default; /***/ }), -/***/ 7599: +/***/ 8356: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30756,9 +30758,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(2190)); +var _v = _interopRequireDefault(__nccwpck_require__(4868)); -var _md = _interopRequireDefault(__nccwpck_require__(7611)); +var _md = _interopRequireDefault(__nccwpck_require__(3397)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30768,7 +30770,7 @@ exports.default = _default; /***/ }), -/***/ 2190: +/***/ 4868: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30780,9 +30782,9 @@ Object.defineProperty(exports, "__esModule", ({ exports.default = _default; exports.URL = exports.DNS = void 0; -var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); +var _stringify = _interopRequireDefault(__nccwpck_require__(7607)); -var _parse = _interopRequireDefault(__nccwpck_require__(3522)); +var _parse = _interopRequireDefault(__nccwpck_require__(183)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30853,7 +30855,7 @@ function _default(name, version, hashfunc) { /***/ }), -/***/ 3033: +/***/ 3753: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30864,9 +30866,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(4485)); +var _rng = _interopRequireDefault(__nccwpck_require__(8483)); -var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); +var _stringify = _interopRequireDefault(__nccwpck_require__(7607)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30897,7 +30899,7 @@ exports.default = _default; /***/ }), -/***/ 1304: +/***/ 5855: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30908,9 +30910,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(2190)); +var _v = _interopRequireDefault(__nccwpck_require__(4868)); -var _sha = _interopRequireDefault(__nccwpck_require__(7530)); +var _sha = _interopRequireDefault(__nccwpck_require__(135)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30920,7 +30922,7 @@ exports.default = _default; /***/ }), -/***/ 7866: +/***/ 7512: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30931,7 +30933,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _regex = _interopRequireDefault(__nccwpck_require__(8164)); +var _regex = _interopRequireDefault(__nccwpck_require__(8344)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30944,7 +30946,7 @@ exports.default = _default; /***/ }), -/***/ 7776: +/***/ 3950: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30955,7 +30957,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(7866)); +var _validate = _interopRequireDefault(__nccwpck_require__(7512)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30972,7 +30974,7 @@ exports.default = _default; /***/ }), -/***/ 5463: +/***/ 3497: /***/ ((module) => { // Returns a wrapper function that returns a wrapped callback @@ -31012,7 +31014,7 @@ function wrappy (fn, cb) { /***/ }), -/***/ 2958: +/***/ 8401: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -31024,10 +31026,10 @@ function wrappy (fn, cb) { */ var inherits = __nccwpck_require__(1669).inherits; -var ZipArchiveOutputStream = __nccwpck_require__(1121).ZipArchiveOutputStream; -var ZipArchiveEntry = __nccwpck_require__(1121).ZipArchiveEntry; +var ZipArchiveOutputStream = __nccwpck_require__(5687).ZipArchiveOutputStream; +var ZipArchiveEntry = __nccwpck_require__(5687).ZipArchiveEntry; -var util = __nccwpck_require__(3920); +var util = __nccwpck_require__(7038); /** * @constructor @@ -31206,7 +31208,7 @@ ZipStream.prototype.finalize = function() { /***/ }), -/***/ 1101: +/***/ 6339: /***/ ((module) => { module.exports = eval("require")("encoding"); @@ -31377,8 +31379,8 @@ var __webpack_exports__ = {}; var exports = __webpack_exports__; Object.defineProperty(exports, "__esModule", ({ value: true })); -const Inputs_1 = __nccwpck_require__(1082); -const NextcloudArtifact_1 = __nccwpck_require__(7614); +const Inputs_1 = __nccwpck_require__(8938); +const NextcloudArtifact_1 = __nccwpck_require__(6817); var artifact = new NextcloudArtifact_1.NextcloudArtifact(Inputs_1.Inputs.ArtifactName, Inputs_1.Inputs.ArtifactPath, Inputs_1.Inputs.NoFileBehvaior); artifact.run(); //# sourceMappingURL=nextcloud-artifacts.js.map diff --git a/src/nextcloud/NextcloudClient.ts b/src/nextcloud/NextcloudClient.ts index 59e69b6..77702f3 100644 --- a/src/nextcloud/NextcloudClient.ts +++ b/src/nextcloud/NextcloudClient.ts @@ -24,8 +24,8 @@ export class NextcloudClient { private endpoint: string, private artifact: string, private rootDirectory: string) { - this.guid = uuidv4(); - this.headers = {'Authorization': 'Basic ' + btoa(`${Inputs.Username}:${Inputs.Password}`)}; + this.guid = uuidv4(); + this.headers = { 'Authorization': 'Basic ' + btoa(`${Inputs.Username}:${Inputs.Password}`) }; } public async uploadFiles(files: string[]) { @@ -109,9 +109,12 @@ export class NextcloudClient { const copies = []; for (let spec of specs) { const dstpath = path.join(artifactPath, spec.uploadPath); - const promise = fs.mkdir(path.dirname(dstpath)) - .then(() => fs.copyFile(spec.absolutePath, dstpath)) - copies.push(promise); + const dstDir = path.dirname(dstpath); + if (!fsSync.existsSync(dstDir)) { + await fs.mkdir(dstDir, { recursive: true }); + } + + copies.push(fs.copyFile(spec.absolutePath, dstpath)); } await Promise.all(copies);