From 75e29166798823126c7813579295f06c28df1e49 Mon Sep 17 00:00:00 2001 From: Trym Lund Flogard Date: Wed, 2 Jun 2021 17:00:08 +0200 Subject: [PATCH] test --- dist/index.js | 851 ++++++++++++++++--------------- src/nextcloud/NextcloudClient.ts | 8 +- 2 files changed, 435 insertions(+), 424 deletions(-) diff --git a/dist/index.js b/dist/index.js index 2e4863a..1be26ae 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 7202: +/***/ 9591: /***/ (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__(1347)); +const glob = __importStar(__nccwpck_require__(7566)); const fs_1 = __nccwpck_require__(5747); -const core_1 = __nccwpck_require__(7033); +const core_1 = __nccwpck_require__(758); 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 = { /***/ }), -/***/ 9574: +/***/ 1082: /***/ (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__(7033)); -const NoFileOption_1 = __nccwpck_require__(1888); +const core = __importStar(__nccwpck_require__(758)); +const NoFileOption_1 = __nccwpck_require__(5305); class Inputs { static get ArtifactName() { return core.getInput("name"); @@ -220,7 +220,7 @@ exports.Inputs = Inputs; /***/ }), -/***/ 1888: +/***/ 5305: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -246,7 +246,7 @@ var NoFileOption; /***/ }), -/***/ 8730: +/***/ 7614: /***/ (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__(7033)); -const FileFinder_1 = __nccwpck_require__(7202); -const Inputs_1 = __nccwpck_require__(9574); -const NextcloudClient_1 = __nccwpck_require__(9184); -const NoFileOption_1 = __nccwpck_require__(1888); +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); class NextcloudArtifact { constructor(name, path, errorBehavior) { this.name = name; @@ -342,7 +342,7 @@ exports.NextcloudArtifact = NextcloudArtifact; /***/ }), -/***/ 9184: +/***/ 6228: /***/ (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__(7033)); +const core = __importStar(__nccwpck_require__(758)); const os = __importStar(__nccwpck_require__(2087)); -const archiver = __importStar(__nccwpck_require__(7124)); -const node_fetch_1 = __importDefault(__nccwpck_require__(2779)); -const Inputs_1 = __nccwpck_require__(9574); -const btoa_1 = __importDefault(__nccwpck_require__(3266)); -const uuid_1 = __nccwpck_require__(7868); +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 fs = fsSync.promises; class NextcloudClient { constructor(endpoint, artifact, rootDirectory) { @@ -476,9 +476,14 @@ class NextcloudClient { const tempArtifactDir = path.join(os.tmpdir(), this.guid); const artifactPath = path.join(tempArtifactDir, `artifact-${this.artifact}`); yield fs.mkdir(path.join(artifactPath, this.artifact), { recursive: true }); + const copies = []; for (let spec of specs) { - yield fs.copyFile(spec.absolutePath, path.join(artifactPath, spec.uploadPath)); + const dstpath = path.join(artifactPath, spec.uploadPath); + const promise = fs.mkdir(path.dirname(dstpath)) + .then(() => fs.copyFile(spec.absolutePath, dstpath)); + copies.push(promise); } + yield Promise.all(copies); const archivePath = path.join(artifactPath, `${this.artifact}.zip`); yield this.zip(path.join(artifactPath, this.artifact), archivePath); return archivePath; @@ -532,7 +537,7 @@ exports.NextcloudClient = NextcloudClient; /***/ }), -/***/ 8832: +/***/ 5265: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -559,7 +564,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__(3441); +const utils_1 = __nccwpck_require__(2555); /** * Commands * @@ -631,7 +636,7 @@ function escapeProperty(s) { /***/ }), -/***/ 7033: +/***/ 758: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -666,9 +671,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__(8832); -const file_command_1 = __nccwpck_require__(6193); -const utils_1 = __nccwpck_require__(3441); +const command_1 = __nccwpck_require__(5265); +const file_command_1 = __nccwpck_require__(3995); +const utils_1 = __nccwpck_require__(2555); const os = __importStar(__nccwpck_require__(2087)); const path = __importStar(__nccwpck_require__(5622)); /** @@ -917,7 +922,7 @@ exports.getState = getState; /***/ }), -/***/ 6193: +/***/ 3995: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -948,7 +953,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__(3441); +const utils_1 = __nccwpck_require__(2555); function issueCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { @@ -966,7 +971,7 @@ exports.issueCommand = issueCommand; /***/ }), -/***/ 3441: +/***/ 2555: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -993,7 +998,7 @@ exports.toCommandValue = toCommandValue; /***/ }), -/***/ 1347: +/***/ 7566: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1009,7 +1014,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__(2599); +const internal_globber_1 = __nccwpck_require__(2242); /** * Constructs a globber * @@ -1026,7 +1031,7 @@ exports.create = create; /***/ }), -/***/ 7981: +/***/ 896: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1052,7 +1057,7 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getOptions = void 0; -const core = __importStar(__nccwpck_require__(7033)); +const core = __importStar(__nccwpck_require__(758)); /** * Returns a copy with defaults filled in. */ @@ -1083,7 +1088,7 @@ exports.getOptions = getOptions; /***/ }), -/***/ 2599: +/***/ 2242: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1137,14 +1142,14 @@ var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _ar }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DefaultGlobber = void 0; -const core = __importStar(__nccwpck_require__(7033)); +const core = __importStar(__nccwpck_require__(758)); const fs = __importStar(__nccwpck_require__(5747)); -const globOptionsHelper = __importStar(__nccwpck_require__(7981)); +const globOptionsHelper = __importStar(__nccwpck_require__(896)); const path = __importStar(__nccwpck_require__(5622)); -const patternHelper = __importStar(__nccwpck_require__(9270)); -const internal_match_kind_1 = __nccwpck_require__(357); -const internal_pattern_1 = __nccwpck_require__(6951); -const internal_search_state_1 = __nccwpck_require__(5977); +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 IS_WINDOWS = process.platform === 'win32'; class DefaultGlobber { constructor(options) { @@ -1325,7 +1330,7 @@ exports.DefaultGlobber = DefaultGlobber; /***/ }), -/***/ 357: +/***/ 3628: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -1350,7 +1355,7 @@ var MatchKind; /***/ }), -/***/ 1035: +/***/ 214: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1555,7 +1560,7 @@ exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; /***/ }), -/***/ 8087: +/***/ 4924: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1585,7 +1590,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__(1035)); +const pathHelper = __importStar(__nccwpck_require__(214)); const assert_1 = __importDefault(__nccwpck_require__(2357)); const IS_WINDOWS = process.platform === 'win32'; /** @@ -1675,7 +1680,7 @@ exports.Path = Path; /***/ }), -/***/ 9270: +/***/ 9771: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1701,8 +1706,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__(1035)); -const internal_match_kind_1 = __nccwpck_require__(357); +const pathHelper = __importStar(__nccwpck_require__(214)); +const internal_match_kind_1 = __nccwpck_require__(3628); const IS_WINDOWS = process.platform === 'win32'; /** * Given an array of patterns, returns an array of paths to search. @@ -1776,7 +1781,7 @@ exports.partialMatch = partialMatch; /***/ }), -/***/ 6951: +/***/ 696: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1807,11 +1812,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__(1035)); +const pathHelper = __importStar(__nccwpck_require__(214)); const assert_1 = __importDefault(__nccwpck_require__(2357)); -const minimatch_1 = __nccwpck_require__(9857); -const internal_match_kind_1 = __nccwpck_require__(357); -const internal_path_1 = __nccwpck_require__(8087); +const minimatch_1 = __nccwpck_require__(1079); +const internal_match_kind_1 = __nccwpck_require__(3628); +const internal_path_1 = __nccwpck_require__(4924); const IS_WINDOWS = process.platform === 'win32'; class Pattern { constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) { @@ -2038,7 +2043,7 @@ exports.Pattern = Pattern; /***/ }), -/***/ 5977: +/***/ 6493: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2056,7 +2061,7 @@ exports.SearchState = SearchState; /***/ }), -/***/ 7968: +/***/ 6327: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -2066,15 +2071,15 @@ exports.SearchState = SearchState; * Licensed under the MIT license. * https://github.com/archiverjs/node-archiver/blob/master/LICENSE-MIT */ -var fs = __nccwpck_require__(627); +var fs = __nccwpck_require__(1315); var path = __nccwpck_require__(5622); -var flatten = __nccwpck_require__(4382); -var difference = __nccwpck_require__(1375); -var union = __nccwpck_require__(222); -var isPlainObject = __nccwpck_require__(3449); +var flatten = __nccwpck_require__(6769); +var difference = __nccwpck_require__(1253); +var union = __nccwpck_require__(27); +var isPlainObject = __nccwpck_require__(942); -var glob = __nccwpck_require__(3547); +var glob = __nccwpck_require__(3804); var file = module.exports = {}; @@ -2272,7 +2277,7 @@ file.normalizeFilesArray = function(data) { /***/ }), -/***/ 4734: +/***/ 3920: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -2282,18 +2287,18 @@ file.normalizeFilesArray = function(data) { * Licensed under the MIT license. * https://github.com/archiverjs/archiver-utils/blob/master/LICENSE */ -var fs = __nccwpck_require__(627); +var fs = __nccwpck_require__(1315); var path = __nccwpck_require__(5622); var nutil = __nccwpck_require__(1669); -var lazystream = __nccwpck_require__(1439); -var normalizePath = __nccwpck_require__(8095); -var defaults = __nccwpck_require__(1894); +var lazystream = __nccwpck_require__(5100); +var normalizePath = __nccwpck_require__(9322); +var defaults = __nccwpck_require__(8036); var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(3260).PassThrough; +var PassThrough = __nccwpck_require__(3794).PassThrough; var utils = module.exports = {}; -utils.file = __nccwpck_require__(7968); +utils.file = __nccwpck_require__(6327); function assertPath(path) { if (typeof path !== 'string') { @@ -2435,7 +2440,7 @@ utils.walkdir = function(dirpath, base, callback) { /***/ }), -/***/ 9646: +/***/ 4669: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2469,7 +2474,7 @@ utils.walkdir = function(dirpath, base, callback) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ /**/ @@ -2484,12 +2489,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ -var Readable = __nccwpck_require__(3072); -var Writable = __nccwpck_require__(7489); +var Readable = __nccwpck_require__(6251); +var Writable = __nccwpck_require__(7670); util.inherits(Duplex, Readable); @@ -2573,7 +2578,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 9992: +/***/ 2637: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2606,11 +2611,11 @@ Duplex.prototype._destroy = function (err, cb) { module.exports = PassThrough; -var Transform = __nccwpck_require__(5764); +var Transform = __nccwpck_require__(1005); /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ util.inherits(PassThrough, Transform); @@ -2627,7 +2632,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 3072: +/***/ 6251: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2656,13 +2661,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(5553); +var isArray = __nccwpck_require__(717); /**/ /**/ @@ -2680,12 +2685,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(7629); +var Stream = __nccwpck_require__(3923); /**/ /**/ -var Buffer = __nccwpck_require__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -2697,8 +2702,8 @@ function _isUint8Array(obj) { /**/ /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ /**/ @@ -2711,8 +2716,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(1396); -var destroyImpl = __nccwpck_require__(7675); +var BufferList = __nccwpck_require__(1652); +var destroyImpl = __nccwpck_require__(5422); var StringDecoder; util.inherits(Readable, Stream); @@ -2732,7 +2737,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(9646); + Duplex = Duplex || __nccwpck_require__(4669); options = options || {}; @@ -2802,14 +2807,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(9646); + Duplex = Duplex || __nccwpck_require__(4669); if (!(this instanceof Readable)) return new Readable(options); @@ -2958,7 +2963,7 @@ Readable.prototype.isPaused = function () { // backwards compatibility. Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -3653,7 +3658,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 5764: +/***/ 1005: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3724,11 +3729,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(9646); +var Duplex = __nccwpck_require__(4669); /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ util.inherits(Transform, Duplex); @@ -3874,7 +3879,7 @@ function done(stream, er, data) { /***/ }), -/***/ 7489: +/***/ 7670: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3907,7 +3912,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ module.exports = Writable; @@ -3944,23 +3949,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(6766) + deprecate: __nccwpck_require__(1689) }; /**/ /**/ -var Stream = __nccwpck_require__(7629); +var Stream = __nccwpck_require__(3923); /**/ /**/ -var Buffer = __nccwpck_require__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -3971,14 +3976,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(7675); +var destroyImpl = __nccwpck_require__(5422); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(9646); + Duplex = Duplex || __nccwpck_require__(4669); options = options || {}; @@ -4128,7 +4133,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(9646); + Duplex = Duplex || __nccwpck_require__(4669); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -4568,7 +4573,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 1396: +/***/ 1652: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4576,7 +4581,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__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -4654,7 +4659,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 7675: +/***/ 5422: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4662,7 +4667,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ // undocumented cb() API, needed for core, not for public API @@ -4735,7 +4740,7 @@ module.exports = { /***/ }), -/***/ 7629: +/***/ 3923: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -4743,7 +4748,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 3260: +/***/ 3794: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -4757,19 +4762,19 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { exports.PassThrough = Stream.PassThrough; exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(3072); + exports = module.exports = __nccwpck_require__(6251); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(7489); - exports.Duplex = __nccwpck_require__(9646); - exports.Transform = __nccwpck_require__(5764); - exports.PassThrough = __nccwpck_require__(9992); + exports.Writable = __nccwpck_require__(7670); + exports.Duplex = __nccwpck_require__(4669); + exports.Transform = __nccwpck_require__(1005); + exports.PassThrough = __nccwpck_require__(2637); } /***/ }), -/***/ 7124: +/***/ 371: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -4779,7 +4784,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__(7787); +var Archiver = __nccwpck_require__(2346); var formats = {}; @@ -4851,15 +4856,15 @@ vending.isRegisteredFormat = function (format) { return false; }; -vending.registerFormat('zip', __nccwpck_require__(561)); -vending.registerFormat('tar', __nccwpck_require__(1904)); -vending.registerFormat('json', __nccwpck_require__(3338)); +vending.registerFormat('zip', __nccwpck_require__(6403)); +vending.registerFormat('tar', __nccwpck_require__(7431)); +vending.registerFormat('json', __nccwpck_require__(9846)); module.exports = vending; /***/ }), -/***/ 7787: +/***/ 2346: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -4870,14 +4875,14 @@ module.exports = vending; * @copyright (c) 2012-2014 Chris Talkington, contributors. */ var fs = __nccwpck_require__(5747); -var glob = __nccwpck_require__(3745); -var async = __nccwpck_require__(9209); +var glob = __nccwpck_require__(7320); +var async = __nccwpck_require__(1924); var path = __nccwpck_require__(5622); -var util = __nccwpck_require__(4734); +var util = __nccwpck_require__(3920); var inherits = __nccwpck_require__(1669).inherits; -var ArchiverError = __nccwpck_require__(7362); -var Transform = __nccwpck_require__(7733).Transform; +var ArchiverError = __nccwpck_require__(5704); +var Transform = __nccwpck_require__(3728).Transform; var win32 = process.platform === 'win32'; @@ -5840,7 +5845,7 @@ module.exports = Archiver; /***/ }), -/***/ 7362: +/***/ 5704: /***/ ((module, exports, __nccwpck_require__) => { /** @@ -5886,7 +5891,7 @@ exports = module.exports = ArchiverError; /***/ }), -/***/ 3338: +/***/ 9846: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -5897,10 +5902,10 @@ exports = module.exports = ArchiverError; * @copyright (c) 2012-2014 Chris Talkington, contributors. */ var inherits = __nccwpck_require__(1669).inherits; -var Transform = __nccwpck_require__(7733).Transform; +var Transform = __nccwpck_require__(3728).Transform; -var crc32 = __nccwpck_require__(3479); -var util = __nccwpck_require__(4734); +var crc32 = __nccwpck_require__(9651); +var util = __nccwpck_require__(3920); /** * @constructor @@ -6003,7 +6008,7 @@ module.exports = Json; /***/ }), -/***/ 1904: +/***/ 7431: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6015,8 +6020,8 @@ module.exports = Json; */ var zlib = __nccwpck_require__(8761); -var engine = __nccwpck_require__(8032); -var util = __nccwpck_require__(4734); +var engine = __nccwpck_require__(4390); +var util = __nccwpck_require__(3920); /** * @constructor @@ -6177,7 +6182,7 @@ module.exports = Tar; /***/ }), -/***/ 561: +/***/ 6403: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6187,8 +6192,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__(223); -var util = __nccwpck_require__(4734); +var engine = __nccwpck_require__(2958); +var util = __nccwpck_require__(3920); /** * @constructor @@ -6304,7 +6309,7 @@ module.exports = Zip; /***/ }), -/***/ 9209: +/***/ 1924: /***/ (function(__unused_webpack_module, exports) { (function (global, factory) { @@ -11156,7 +11161,7 @@ module.exports = Zip; /***/ }), -/***/ 4920: +/***/ 3592: /***/ ((module) => { "use strict"; @@ -11226,7 +11231,7 @@ function range(a, b, str) { /***/ }), -/***/ 9777: +/***/ 3304: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -11630,15 +11635,15 @@ module.exports = BufferList /***/ }), -/***/ 4396: +/***/ 9173: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const DuplexStream = __nccwpck_require__(7733).Duplex -const inherits = __nccwpck_require__(458) -const BufferList = __nccwpck_require__(9777) +const DuplexStream = __nccwpck_require__(3728).Duplex +const inherits = __nccwpck_require__(6706) +const BufferList = __nccwpck_require__(3304) function BufferListStream (callback) { if (!(this instanceof BufferListStream)) { @@ -11722,11 +11727,11 @@ module.exports.BufferList = BufferList /***/ }), -/***/ 1048: +/***/ 2526: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var concatMap = __nccwpck_require__(3285); -var balanced = __nccwpck_require__(4920); +var concatMap = __nccwpck_require__(5215); +var balanced = __nccwpck_require__(3592); module.exports = expandTop; @@ -11930,7 +11935,7 @@ function expand(str, isTop) { /***/ }), -/***/ 3266: +/***/ 68: /***/ ((module) => { (function () { @@ -11954,7 +11959,7 @@ function expand(str, isTop) { /***/ }), -/***/ 3479: +/***/ 9651: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Buffer = __nccwpck_require__(4293).Buffer; @@ -12072,7 +12077,7 @@ module.exports = crc32; /***/ }), -/***/ 2833: +/***/ 9841: /***/ ((module) => { /** @@ -12094,7 +12099,7 @@ ArchiveEntry.prototype.isDirectory = function() {}; /***/ }), -/***/ 9651: +/***/ 7498: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12105,10 +12110,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__(7733).Transform; +var Transform = __nccwpck_require__(3728).Transform; -var ArchiveEntry = __nccwpck_require__(2833); -var util = __nccwpck_require__(1715); +var ArchiveEntry = __nccwpck_require__(9841); +var util = __nccwpck_require__(2767); var ArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ArchiveOutputStream)) { @@ -12217,7 +12222,7 @@ ArchiveOutputStream.prototype.write = function(chunk, cb) { /***/ }), -/***/ 6031: +/***/ 1837: /***/ ((module) => { /** @@ -12295,7 +12300,7 @@ module.exports = { /***/ }), -/***/ 5742: +/***/ 9547: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12305,7 +12310,7 @@ module.exports = { * Licensed under the MIT license. * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ -var zipUtil = __nccwpck_require__(1871); +var zipUtil = __nccwpck_require__(7742); var DATA_DESCRIPTOR_FLAG = 1 << 3; var ENCRYPTION_FLAG = 1 << 0; @@ -12402,7 +12407,7 @@ GeneralPurposeBit.prototype.usesUTF8ForNames = function() { /***/ }), -/***/ 7576: +/***/ 8610: /***/ ((module) => { /** @@ -12461,7 +12466,7 @@ module.exports = { /***/ }), -/***/ 1871: +/***/ 7742: /***/ ((module) => { /** @@ -12541,7 +12546,7 @@ util.toDosTime = function(d) { /***/ }), -/***/ 5382: +/***/ 7565: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12552,14 +12557,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__(8095); +var normalizePath = __nccwpck_require__(9322); -var ArchiveEntry = __nccwpck_require__(2833); -var GeneralPurposeBit = __nccwpck_require__(5742); -var UnixStat = __nccwpck_require__(7576); +var ArchiveEntry = __nccwpck_require__(9841); +var GeneralPurposeBit = __nccwpck_require__(9547); +var UnixStat = __nccwpck_require__(8610); -var constants = __nccwpck_require__(6031); -var zipUtil = __nccwpck_require__(1871); +var constants = __nccwpck_require__(1837); +var zipUtil = __nccwpck_require__(7742); var ZipArchiveEntry = module.exports = function(name) { if (!(this instanceof ZipArchiveEntry)) { @@ -12961,7 +12966,7 @@ ZipArchiveEntry.prototype.isZip64 = function() { /***/ }), -/***/ 229: +/***/ 1027: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12972,17 +12977,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__(3479); -var {CRC32Stream} = __nccwpck_require__(484); -var {DeflateCRC32Stream} = __nccwpck_require__(484); +var crc32 = __nccwpck_require__(9651); +var {CRC32Stream} = __nccwpck_require__(8373); +var {DeflateCRC32Stream} = __nccwpck_require__(8373); -var ArchiveOutputStream = __nccwpck_require__(9651); -var ZipArchiveEntry = __nccwpck_require__(5382); -var GeneralPurposeBit = __nccwpck_require__(5742); +var ArchiveOutputStream = __nccwpck_require__(7498); +var ZipArchiveEntry = __nccwpck_require__(7565); +var GeneralPurposeBit = __nccwpck_require__(9547); -var constants = __nccwpck_require__(6031); -var util = __nccwpck_require__(1715); -var zipUtil = __nccwpck_require__(1871); +var constants = __nccwpck_require__(1837); +var util = __nccwpck_require__(2767); +var zipUtil = __nccwpck_require__(7742); var ZipArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ZipArchiveOutputStream)) { @@ -13408,7 +13413,7 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { /***/ }), -/***/ 187: +/***/ 1121: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -13419,15 +13424,15 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ module.exports = { - ArchiveEntry: __nccwpck_require__(2833), - ZipArchiveEntry: __nccwpck_require__(5382), - ArchiveOutputStream: __nccwpck_require__(9651), - ZipArchiveOutputStream: __nccwpck_require__(229) + ArchiveEntry: __nccwpck_require__(9841), + ZipArchiveEntry: __nccwpck_require__(7565), + ArchiveOutputStream: __nccwpck_require__(7498), + ZipArchiveOutputStream: __nccwpck_require__(1027) }; /***/ }), -/***/ 1715: +/***/ 2767: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -13438,7 +13443,7 @@ module.exports = { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(7733).PassThrough; +var PassThrough = __nccwpck_require__(3728).PassThrough; var util = module.exports = {}; @@ -13463,7 +13468,7 @@ util.normalizeInputSource = function(source) { /***/ }), -/***/ 3285: +/***/ 5215: /***/ ((module) => { module.exports = function (xs, fn) { @@ -13483,7 +13488,7 @@ var isArray = Array.isArray || function (xs) { /***/ }), -/***/ 1264: +/***/ 4613: /***/ ((__unused_webpack_module, exports) => { // Copyright Joyent, Inc. and other Node contributors. @@ -13597,7 +13602,7 @@ function objectToString(o) { /***/ }), -/***/ 5661: +/***/ 8542: /***/ ((__unused_webpack_module, exports) => { /* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */ @@ -13714,7 +13719,7 @@ CRC32.str = crc32_str; /***/ }), -/***/ 466: +/***/ 9827: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13728,9 +13733,9 @@ CRC32.str = crc32_str; -const {Transform} = __nccwpck_require__(7733); +const {Transform} = __nccwpck_require__(3728); -const crc32 = __nccwpck_require__(5661); +const crc32 = __nccwpck_require__(8542); class CRC32Stream extends Transform { constructor(options) { @@ -13770,7 +13775,7 @@ module.exports = CRC32Stream; /***/ }), -/***/ 5943: +/***/ 3355: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13786,7 +13791,7 @@ module.exports = CRC32Stream; const {DeflateRaw} = __nccwpck_require__(8761); -const crc32 = __nccwpck_require__(5661); +const crc32 = __nccwpck_require__(8542); class DeflateCRC32Stream extends DeflateRaw { constructor(options) { @@ -13840,7 +13845,7 @@ module.exports = DeflateCRC32Stream; /***/ }), -/***/ 484: +/***/ 8373: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13855,17 +13860,17 @@ module.exports = DeflateCRC32Stream; module.exports = { - CRC32Stream: __nccwpck_require__(466), - DeflateCRC32Stream: __nccwpck_require__(5943) + CRC32Stream: __nccwpck_require__(9827), + DeflateCRC32Stream: __nccwpck_require__(3355) } /***/ }), -/***/ 3481: +/***/ 971: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var once = __nccwpck_require__(7049); +var once = __nccwpck_require__(3883); var noop = function() {}; @@ -13963,7 +13968,7 @@ module.exports = eos; /***/ }), -/***/ 528: +/***/ 3545: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(5747).constants || __nccwpck_require__(7619) @@ -13971,7 +13976,7 @@ module.exports = __nccwpck_require__(5747).constants || __nccwpck_require__(7619 /***/ }), -/***/ 4043: +/***/ 9516: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = realpath @@ -13987,7 +13992,7 @@ var origRealpathSync = fs.realpathSync var version = process.version var ok = /^v[0-5]\./.test(version) -var old = __nccwpck_require__(36) +var old = __nccwpck_require__(4974) function newError (er) { return er && er.syscall === 'realpath' && ( @@ -14044,7 +14049,7 @@ function unmonkeypatch () { /***/ }), -/***/ 36: +/***/ 4974: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { // Copyright Joyent, Inc. and other Node contributors. @@ -14354,7 +14359,7 @@ exports.realpath = function realpath(p, cache, cb) { /***/ }), -/***/ 8513: +/***/ 8092: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { exports.setopts = setopts @@ -14370,8 +14375,8 @@ function ownProp (obj, field) { } var path = __nccwpck_require__(5622) -var minimatch = __nccwpck_require__(9857) -var isAbsolute = __nccwpck_require__(4236) +var minimatch = __nccwpck_require__(1079) +var isAbsolute = __nccwpck_require__(755) var Minimatch = minimatch.Minimatch function alphasort (a, b) { @@ -14595,7 +14600,7 @@ function childrenIgnored (self, path) { /***/ }), -/***/ 3547: +/***/ 3804: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // Approach: @@ -14641,24 +14646,24 @@ function childrenIgnored (self, path) { module.exports = glob var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(4043) -var minimatch = __nccwpck_require__(9857) +var rp = __nccwpck_require__(9516) +var minimatch = __nccwpck_require__(1079) var Minimatch = minimatch.Minimatch -var inherits = __nccwpck_require__(458) +var inherits = __nccwpck_require__(6706) var EE = __nccwpck_require__(8614).EventEmitter var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(4236) -var globSync = __nccwpck_require__(8271) -var common = __nccwpck_require__(8513) +var isAbsolute = __nccwpck_require__(755) +var globSync = __nccwpck_require__(6401) +var common = __nccwpck_require__(8092) var setopts = common.setopts var ownProp = common.ownProp -var inflight = __nccwpck_require__(9351) +var inflight = __nccwpck_require__(8679) var util = __nccwpck_require__(1669) var childrenIgnored = common.childrenIgnored var isIgnored = common.isIgnored -var once = __nccwpck_require__(7049) +var once = __nccwpck_require__(3883) function glob (pattern, options, cb) { if (typeof options === 'function') cb = options, options = {} @@ -15390,22 +15395,22 @@ Glob.prototype._stat2 = function (f, abs, er, stat, cb) { /***/ }), -/***/ 8271: +/***/ 6401: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = globSync globSync.GlobSync = GlobSync var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(4043) -var minimatch = __nccwpck_require__(9857) +var rp = __nccwpck_require__(9516) +var minimatch = __nccwpck_require__(1079) var Minimatch = minimatch.Minimatch -var Glob = __nccwpck_require__(3547).Glob +var Glob = __nccwpck_require__(3804).Glob var util = __nccwpck_require__(1669) var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(4236) -var common = __nccwpck_require__(8513) +var isAbsolute = __nccwpck_require__(755) +var common = __nccwpck_require__(8092) var setopts = common.setopts var ownProp = common.ownProp var childrenIgnored = common.childrenIgnored @@ -15881,7 +15886,7 @@ GlobSync.prototype._makeAbs = function (f) { /***/ }), -/***/ 4745: +/***/ 9049: /***/ ((module) => { "use strict"; @@ -15912,13 +15917,13 @@ function clone (obj) { /***/ }), -/***/ 627: +/***/ 1315: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var fs = __nccwpck_require__(5747) -var polyfills = __nccwpck_require__(6881) -var legacy = __nccwpck_require__(7042) -var clone = __nccwpck_require__(4745) +var polyfills = __nccwpck_require__(584) +var legacy = __nccwpck_require__(2005) +var clone = __nccwpck_require__(9049) var util = __nccwpck_require__(1669) @@ -16292,7 +16297,7 @@ function retry () { /***/ }), -/***/ 7042: +/***/ 2005: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413).Stream @@ -16417,7 +16422,7 @@ function legacy (fs) { /***/ }), -/***/ 6881: +/***/ 584: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var constants = __nccwpck_require__(7619) @@ -16770,12 +16775,12 @@ function patch (fs) { /***/ }), -/***/ 9351: +/***/ 8679: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(8928) +var wrappy = __nccwpck_require__(5463) var reqs = Object.create(null) -var once = __nccwpck_require__(7049) +var once = __nccwpck_require__(3883) module.exports = wrappy(inflight) @@ -16831,7 +16836,7 @@ function slice (args) { /***/ }), -/***/ 458: +/***/ 6706: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { try { @@ -16841,13 +16846,13 @@ try { module.exports = util.inherits; } catch (e) { /* istanbul ignore next */ - module.exports = __nccwpck_require__(9716); + module.exports = __nccwpck_require__(1799); } /***/ }), -/***/ 9716: +/***/ 1799: /***/ ((module) => { if (typeof Object.create === 'function') { @@ -16881,7 +16886,7 @@ if (typeof Object.create === 'function') { /***/ }), -/***/ 5553: +/***/ 717: /***/ ((module) => { var toString = {}.toString; @@ -16893,11 +16898,11 @@ module.exports = Array.isArray || function (arr) { /***/ }), -/***/ 1439: +/***/ 5100: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669); -var PassThrough = __nccwpck_require__(8769); +var PassThrough = __nccwpck_require__(1290); module.exports = { Readable: Readable, @@ -16954,7 +16959,7 @@ function Writable(fn, options) { /***/ }), -/***/ 4751: +/***/ 4814: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -16988,7 +16993,7 @@ function Writable(fn, options) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ /**/ @@ -17003,12 +17008,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ -var Readable = __nccwpck_require__(152); -var Writable = __nccwpck_require__(4978); +var Readable = __nccwpck_require__(703); +var Writable = __nccwpck_require__(2157); util.inherits(Duplex, Readable); @@ -17092,7 +17097,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 687: +/***/ 1257: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17125,11 +17130,11 @@ Duplex.prototype._destroy = function (err, cb) { module.exports = PassThrough; -var Transform = __nccwpck_require__(6026); +var Transform = __nccwpck_require__(2022); /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ util.inherits(PassThrough, Transform); @@ -17146,7 +17151,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 152: +/***/ 703: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17175,13 +17180,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(5553); +var isArray = __nccwpck_require__(717); /**/ /**/ @@ -17199,12 +17204,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(2367); +var Stream = __nccwpck_require__(110); /**/ /**/ -var Buffer = __nccwpck_require__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -17216,8 +17221,8 @@ function _isUint8Array(obj) { /**/ /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ /**/ @@ -17230,8 +17235,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(1215); -var destroyImpl = __nccwpck_require__(236); +var BufferList = __nccwpck_require__(6283); +var destroyImpl = __nccwpck_require__(3766); var StringDecoder; util.inherits(Readable, Stream); @@ -17251,7 +17256,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(4751); + Duplex = Duplex || __nccwpck_require__(4814); options = options || {}; @@ -17321,14 +17326,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(4751); + Duplex = Duplex || __nccwpck_require__(4814); if (!(this instanceof Readable)) return new Readable(options); @@ -17477,7 +17482,7 @@ Readable.prototype.isPaused = function () { // backwards compatibility. Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -18172,7 +18177,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 6026: +/***/ 2022: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18243,11 +18248,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(4751); +var Duplex = __nccwpck_require__(4814); /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ util.inherits(Transform, Duplex); @@ -18393,7 +18398,7 @@ function done(stream, er, data) { /***/ }), -/***/ 4978: +/***/ 2157: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18426,7 +18431,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ module.exports = Writable; @@ -18463,23 +18468,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(1264)); -util.inherits = __nccwpck_require__(458); +var util = Object.create(__nccwpck_require__(4613)); +util.inherits = __nccwpck_require__(6706); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(6766) + deprecate: __nccwpck_require__(1689) }; /**/ /**/ -var Stream = __nccwpck_require__(2367); +var Stream = __nccwpck_require__(110); /**/ /**/ -var Buffer = __nccwpck_require__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -18490,14 +18495,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(236); +var destroyImpl = __nccwpck_require__(3766); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(4751); + Duplex = Duplex || __nccwpck_require__(4814); options = options || {}; @@ -18647,7 +18652,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(4751); + Duplex = Duplex || __nccwpck_require__(4814); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -19087,7 +19092,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 1215: +/***/ 6283: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19095,7 +19100,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__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -19173,7 +19178,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 236: +/***/ 3766: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19181,7 +19186,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(6438); +var pna = __nccwpck_require__(9615); /**/ // undocumented cb() API, needed for core, not for public API @@ -19254,7 +19259,7 @@ module.exports = { /***/ }), -/***/ 2367: +/***/ 110: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -19262,15 +19267,15 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 8769: +/***/ 1290: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(5393).PassThrough +module.exports = __nccwpck_require__(3256).PassThrough /***/ }), -/***/ 5393: +/***/ 3256: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -19284,19 +19289,19 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { exports.PassThrough = Stream.PassThrough; exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(152); + exports = module.exports = __nccwpck_require__(703); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(4978); - exports.Duplex = __nccwpck_require__(4751); - exports.Transform = __nccwpck_require__(6026); - exports.PassThrough = __nccwpck_require__(687); + exports.Writable = __nccwpck_require__(2157); + exports.Duplex = __nccwpck_require__(4814); + exports.Transform = __nccwpck_require__(2022); + exports.PassThrough = __nccwpck_require__(1257); } /***/ }), -/***/ 1894: +/***/ 8036: /***/ ((module) => { /** @@ -19971,7 +19976,7 @@ module.exports = defaults; /***/ }), -/***/ 1375: +/***/ 1253: /***/ ((module) => { /** @@ -21148,7 +21153,7 @@ module.exports = difference; /***/ }), -/***/ 4382: +/***/ 6769: /***/ ((module) => { /** @@ -21504,7 +21509,7 @@ module.exports = flatten; /***/ }), -/***/ 3449: +/***/ 942: /***/ ((module) => { /** @@ -21650,7 +21655,7 @@ module.exports = isPlainObject; /***/ }), -/***/ 222: +/***/ 27: /***/ ((module) => { /** @@ -22838,7 +22843,7 @@ module.exports = union; /***/ }), -/***/ 9857: +/***/ 1079: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = minimatch @@ -22850,7 +22855,7 @@ try { } catch (er) {} var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {} -var expand = __nccwpck_require__(1048) +var expand = __nccwpck_require__(2526) var plTypes = { '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, @@ -23768,7 +23773,7 @@ function regExpEscape (s) { /***/ }), -/***/ 2779: +/***/ 3902: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; @@ -23933,7 +23938,7 @@ FetchError.prototype.name = 'FetchError'; let convert; try { - convert = __nccwpck_require__(3347).convert; + convert = __nccwpck_require__(1101).convert; } catch (e) {} const INTERNALS = Symbol('Body internals'); @@ -25425,7 +25430,7 @@ exports.FetchError = FetchError; /***/ }), -/***/ 8095: +/***/ 9322: /***/ ((module) => { /*! @@ -25467,10 +25472,10 @@ module.exports = function(path, stripTrailing) { /***/ }), -/***/ 7049: +/***/ 3883: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(8928) +var wrappy = __nccwpck_require__(5463) module.exports = wrappy(once) module.exports.strict = wrappy(onceStrict) @@ -25516,7 +25521,7 @@ function onceStrict (fn) { /***/ }), -/***/ 4236: +/***/ 755: /***/ ((module) => { "use strict"; @@ -25544,7 +25549,7 @@ module.exports.win32 = win32; /***/ }), -/***/ 6438: +/***/ 9615: /***/ ((module) => { "use strict"; @@ -25597,7 +25602,7 @@ function nextTick(fn, arg1, arg2, arg3) { /***/ }), -/***/ 5876: +/***/ 6098: /***/ ((module) => { "use strict"; @@ -25721,7 +25726,7 @@ module.exports.q = codes; /***/ }), -/***/ 1977: +/***/ 8120: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25766,11 +25771,11 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; -var Readable = __nccwpck_require__(5461); +var Readable = __nccwpck_require__(6382); -var Writable = __nccwpck_require__(5197); +var Writable = __nccwpck_require__(1477); -__nccwpck_require__(458)(Duplex, Readable); +__nccwpck_require__(6706)(Duplex, Readable); { // Allow the keys array to be GC'ed. @@ -25867,7 +25872,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { /***/ }), -/***/ 2817: +/***/ 4811: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25898,9 +25903,9 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { module.exports = PassThrough; -var Transform = __nccwpck_require__(3994); +var Transform = __nccwpck_require__(524); -__nccwpck_require__(458)(PassThrough, Transform); +__nccwpck_require__(6706)(PassThrough, Transform); function PassThrough(options) { if (!(this instanceof PassThrough)) return new PassThrough(options); @@ -25913,7 +25918,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 5461: +/***/ 6382: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25958,7 +25963,7 @@ var EElistenerCount = function EElistenerCount(emitter, type) { /**/ -var Stream = __nccwpck_require__(5032); +var Stream = __nccwpck_require__(2426); /**/ @@ -25988,14 +25993,14 @@ if (debugUtil && debugUtil.debuglog) { /**/ -var BufferList = __nccwpck_require__(9471); +var BufferList = __nccwpck_require__(9864); -var destroyImpl = __nccwpck_require__(4180); +var destroyImpl = __nccwpck_require__(3202); -var _require = __nccwpck_require__(3817), +var _require = __nccwpck_require__(7042), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(5876)/* .codes */ .q, +var _require$codes = __nccwpck_require__(6098)/* .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, @@ -26006,7 +26011,7 @@ var StringDecoder; var createReadableStreamAsyncIterator; var from; -__nccwpck_require__(458)(Readable, Stream); +__nccwpck_require__(6706)(Readable, Stream); var errorOrDestroy = destroyImpl.errorOrDestroy; var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume']; @@ -26023,7 +26028,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(1977); + Duplex = Duplex || __nccwpck_require__(8120); options = options || {}; // Duplex streams are both readable and writable, but share // the same options object. // However, some cases require setting options to different @@ -26079,14 +26084,14 @@ function ReadableState(options, stream, isDuplex) { this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(1977); + Duplex = Duplex || __nccwpck_require__(8120); 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 @@ -26241,7 +26246,7 @@ Readable.prototype.isPaused = function () { Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9171)/* .StringDecoder */ .s; var decoder = new StringDecoder(enc); this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8 @@ -26925,7 +26930,7 @@ Readable.prototype.wrap = function (stream) { if (typeof Symbol === 'function') { Readable.prototype[Symbol.asyncIterator] = function () { if (createReadableStreamAsyncIterator === undefined) { - createReadableStreamAsyncIterator = __nccwpck_require__(4498); + createReadableStreamAsyncIterator = __nccwpck_require__(3622); } return createReadableStreamAsyncIterator(this); @@ -27027,7 +27032,7 @@ function endReadableNT(state, stream) { if (typeof Symbol === 'function') { Readable.from = function (iterable, opts) { if (from === undefined) { - from = __nccwpck_require__(3875); + from = __nccwpck_require__(8500); } return from(Readable, iterable, opts); @@ -27044,7 +27049,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 3994: +/***/ 524: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27113,15 +27118,15 @@ function indexOf(xs, x) { module.exports = Transform; -var _require$codes = __nccwpck_require__(5876)/* .codes */ .q, +var _require$codes = __nccwpck_require__(6098)/* .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__(1977); +var Duplex = __nccwpck_require__(8120); -__nccwpck_require__(458)(Transform, Duplex); +__nccwpck_require__(6706)(Transform, Duplex); function afterTransform(er, data) { var ts = this._transformState; @@ -27252,7 +27257,7 @@ function done(stream, er, data) { /***/ }), -/***/ 5197: +/***/ 1477: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27315,13 +27320,13 @@ Writable.WritableState = WritableState; /**/ var internalUtil = { - deprecate: __nccwpck_require__(6766) + deprecate: __nccwpck_require__(1689) }; /**/ /**/ -var Stream = __nccwpck_require__(5032); +var Stream = __nccwpck_require__(2426); /**/ @@ -27337,12 +27342,12 @@ function _isUint8Array(obj) { return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; } -var destroyImpl = __nccwpck_require__(4180); +var destroyImpl = __nccwpck_require__(3202); -var _require = __nccwpck_require__(3817), +var _require = __nccwpck_require__(7042), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(5876)/* .codes */ .q, +var _require$codes = __nccwpck_require__(6098)/* .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, @@ -27354,12 +27359,12 @@ var _require$codes = __nccwpck_require__(5876)/* .codes */ .q, var errorOrDestroy = destroyImpl.errorOrDestroy; -__nccwpck_require__(458)(Writable, Stream); +__nccwpck_require__(6706)(Writable, Stream); function nop() {} function WritableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(1977); + Duplex = Duplex || __nccwpck_require__(8120); options = options || {}; // Duplex streams are both readable and writable, but share // the same options object. // However, some cases require setting options to different @@ -27485,7 +27490,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(1977); // Writable ctor is applied to Duplexes, too. + Duplex = Duplex || __nccwpck_require__(8120); // 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 @@ -27956,7 +27961,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 4498: +/***/ 3622: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27966,7 +27971,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__(6254); +var finished = __nccwpck_require__(9335); var kLastResolve = Symbol('lastResolve'); var kLastReject = Symbol('lastReject'); @@ -28170,7 +28175,7 @@ module.exports = createReadableStreamAsyncIterator; /***/ }), -/***/ 9471: +/***/ 9864: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28387,7 +28392,7 @@ function () { /***/ }), -/***/ 4180: +/***/ 3202: /***/ ((module) => { "use strict"; @@ -28499,7 +28504,7 @@ module.exports = { /***/ }), -/***/ 6254: +/***/ 9335: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28507,7 +28512,7 @@ module.exports = { // permission from the author, Mathias Buus (@mafintosh). -var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(5876)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; +var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(6098)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; function once(callback) { var called = false; @@ -28610,7 +28615,7 @@ module.exports = eos; /***/ }), -/***/ 3875: +/***/ 8500: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28626,7 +28631,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__(5876)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; +var ERR_INVALID_ARG_TYPE = __nccwpck_require__(6098)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; function from(Readable, iterable, opts) { var iterator; @@ -28681,7 +28686,7 @@ module.exports = from; /***/ }), -/***/ 4182: +/***/ 1818: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28700,7 +28705,7 @@ function once(callback) { }; } -var _require$codes = __nccwpck_require__(5876)/* .codes */ .q, +var _require$codes = __nccwpck_require__(6098)/* .codes */ .q, ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED; @@ -28719,7 +28724,7 @@ function destroyer(stream, reading, writing, callback) { stream.on('close', function () { closed = true; }); - if (eos === undefined) eos = __nccwpck_require__(6254); + if (eos === undefined) eos = __nccwpck_require__(9335); eos(stream, { readable: reading, writable: writing @@ -28785,13 +28790,13 @@ module.exports = pipeline; /***/ }), -/***/ 3817: +/***/ 7042: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var ERR_INVALID_OPT_VALUE = __nccwpck_require__(5876)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE; +var ERR_INVALID_OPT_VALUE = __nccwpck_require__(6098)/* .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; @@ -28819,7 +28824,7 @@ module.exports = { /***/ }), -/***/ 5032: +/***/ 2426: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -28827,7 +28832,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 7733: +/***/ 3728: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -28836,28 +28841,28 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { Object.assign(module.exports, Stream); module.exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(5461); + exports = module.exports = __nccwpck_require__(6382); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(5197); - exports.Duplex = __nccwpck_require__(1977); - exports.Transform = __nccwpck_require__(3994); - exports.PassThrough = __nccwpck_require__(2817); - exports.finished = __nccwpck_require__(6254); - exports.pipeline = __nccwpck_require__(4182); + 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); } /***/ }), -/***/ 3745: +/***/ 7320: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = readdirGlob; const fs = __nccwpck_require__(5747); const { EventEmitter } = __nccwpck_require__(8614); -const { Minimatch } = __nccwpck_require__(9857); +const { Minimatch } = __nccwpck_require__(1079); const { resolve } = __nccwpck_require__(5622); function readdir(dir, strict) { @@ -29099,7 +29104,7 @@ readdirGlob.ReaddirGlob = ReaddirGlob; /***/ }), -/***/ 8275: +/***/ 2516: /***/ ((module, exports, __nccwpck_require__) => { /* eslint-disable node/no-deprecated-api */ @@ -29168,7 +29173,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /***/ }), -/***/ 9495: +/***/ 9171: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -29197,7 +29202,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /**/ -var Buffer = __nccwpck_require__(8275).Buffer; +var Buffer = __nccwpck_require__(2516).Buffer; /**/ var isEncoding = Buffer.isEncoding || function (encoding) { @@ -29471,15 +29476,15 @@ function simpleEnd(buf) { /***/ }), -/***/ 2508: +/***/ 3943: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669) -var bl = __nccwpck_require__(4396) -var headers = __nccwpck_require__(9348) +var bl = __nccwpck_require__(9173) +var headers = __nccwpck_require__(2336) -var Writable = __nccwpck_require__(7733).Writable -var PassThrough = __nccwpck_require__(7733).PassThrough +var Writable = __nccwpck_require__(3728).Writable +var PassThrough = __nccwpck_require__(3728).PassThrough var noop = function () {} @@ -29735,7 +29740,7 @@ module.exports = Extract /***/ }), -/***/ 9348: +/***/ 2336: /***/ ((__unused_webpack_module, exports) => { var alloc = Buffer.alloc @@ -30037,28 +30042,28 @@ exports.decode = function (buf, filenameEncoding, allowUnknownFormat) { /***/ }), -/***/ 8032: +/***/ 4390: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -exports.extract = __nccwpck_require__(2508) -exports.pack = __nccwpck_require__(1408) +exports.extract = __nccwpck_require__(3943) +exports.pack = __nccwpck_require__(853) /***/ }), -/***/ 1408: +/***/ 853: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var constants = __nccwpck_require__(528) -var eos = __nccwpck_require__(3481) -var inherits = __nccwpck_require__(458) +var constants = __nccwpck_require__(3545) +var eos = __nccwpck_require__(971) +var inherits = __nccwpck_require__(6706) var alloc = Buffer.alloc -var Readable = __nccwpck_require__(7733).Readable -var Writable = __nccwpck_require__(7733).Writable +var Readable = __nccwpck_require__(3728).Readable +var Writable = __nccwpck_require__(3728).Writable var StringDecoder = __nccwpck_require__(4304).StringDecoder -var headers = __nccwpck_require__(9348) +var headers = __nccwpck_require__(2336) var DMODE = parseInt('755', 8) var FMODE = parseInt('644', 8) @@ -30308,7 +30313,7 @@ module.exports = Pack /***/ }), -/***/ 6766: +/***/ 1689: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -30321,7 +30326,7 @@ module.exports = __nccwpck_require__(1669).deprecate; /***/ }), -/***/ 7868: +/***/ 7273: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30385,29 +30390,29 @@ Object.defineProperty(exports, "parse", ({ } })); -var _v = _interopRequireDefault(__nccwpck_require__(1012)); +var _v = _interopRequireDefault(__nccwpck_require__(5093)); -var _v2 = _interopRequireDefault(__nccwpck_require__(5959)); +var _v2 = _interopRequireDefault(__nccwpck_require__(7599)); -var _v3 = _interopRequireDefault(__nccwpck_require__(7578)); +var _v3 = _interopRequireDefault(__nccwpck_require__(3033)); -var _v4 = _interopRequireDefault(__nccwpck_require__(3791)); +var _v4 = _interopRequireDefault(__nccwpck_require__(1304)); -var _nil = _interopRequireDefault(__nccwpck_require__(7006)); +var _nil = _interopRequireDefault(__nccwpck_require__(2956)); -var _version = _interopRequireDefault(__nccwpck_require__(3488)); +var _version = _interopRequireDefault(__nccwpck_require__(7776)); -var _validate = _interopRequireDefault(__nccwpck_require__(7343)); +var _validate = _interopRequireDefault(__nccwpck_require__(7866)); -var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); +var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); -var _parse = _interopRequireDefault(__nccwpck_require__(2860)); +var _parse = _interopRequireDefault(__nccwpck_require__(3522)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /***/ }), -/***/ 9524: +/***/ 7611: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30437,7 +30442,7 @@ exports.default = _default; /***/ }), -/***/ 7006: +/***/ 2956: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -30452,7 +30457,7 @@ exports.default = _default; /***/ }), -/***/ 2860: +/***/ 3522: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30463,7 +30468,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(7343)); +var _validate = _interopRequireDefault(__nccwpck_require__(7866)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30504,7 +30509,7 @@ exports.default = _default; /***/ }), -/***/ 788: +/***/ 8164: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -30519,7 +30524,7 @@ exports.default = _default; /***/ }), -/***/ 8702: +/***/ 4485: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30550,7 +30555,7 @@ function rng() { /***/ }), -/***/ 5472: +/***/ 7530: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30580,7 +30585,7 @@ exports.default = _default; /***/ }), -/***/ 6587: +/***/ 4402: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30591,7 +30596,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(7343)); +var _validate = _interopRequireDefault(__nccwpck_require__(7866)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30626,7 +30631,7 @@ exports.default = _default; /***/ }), -/***/ 1012: +/***/ 5093: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30637,9 +30642,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(8702)); +var _rng = _interopRequireDefault(__nccwpck_require__(4485)); -var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); +var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30740,7 +30745,7 @@ exports.default = _default; /***/ }), -/***/ 5959: +/***/ 7599: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30751,9 +30756,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(2717)); +var _v = _interopRequireDefault(__nccwpck_require__(2190)); -var _md = _interopRequireDefault(__nccwpck_require__(9524)); +var _md = _interopRequireDefault(__nccwpck_require__(7611)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30763,7 +30768,7 @@ exports.default = _default; /***/ }), -/***/ 2717: +/***/ 2190: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30775,9 +30780,9 @@ Object.defineProperty(exports, "__esModule", ({ exports.default = _default; exports.URL = exports.DNS = void 0; -var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); +var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); -var _parse = _interopRequireDefault(__nccwpck_require__(2860)); +var _parse = _interopRequireDefault(__nccwpck_require__(3522)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30848,7 +30853,7 @@ function _default(name, version, hashfunc) { /***/ }), -/***/ 7578: +/***/ 3033: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30859,9 +30864,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(8702)); +var _rng = _interopRequireDefault(__nccwpck_require__(4485)); -var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); +var _stringify = _interopRequireDefault(__nccwpck_require__(4402)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30892,7 +30897,7 @@ exports.default = _default; /***/ }), -/***/ 3791: +/***/ 1304: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30903,9 +30908,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(2717)); +var _v = _interopRequireDefault(__nccwpck_require__(2190)); -var _sha = _interopRequireDefault(__nccwpck_require__(5472)); +var _sha = _interopRequireDefault(__nccwpck_require__(7530)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30915,7 +30920,7 @@ exports.default = _default; /***/ }), -/***/ 7343: +/***/ 7866: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30926,7 +30931,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _regex = _interopRequireDefault(__nccwpck_require__(788)); +var _regex = _interopRequireDefault(__nccwpck_require__(8164)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30939,7 +30944,7 @@ exports.default = _default; /***/ }), -/***/ 3488: +/***/ 7776: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30950,7 +30955,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(7343)); +var _validate = _interopRequireDefault(__nccwpck_require__(7866)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30967,7 +30972,7 @@ exports.default = _default; /***/ }), -/***/ 8928: +/***/ 5463: /***/ ((module) => { // Returns a wrapper function that returns a wrapped callback @@ -31007,7 +31012,7 @@ function wrappy (fn, cb) { /***/ }), -/***/ 223: +/***/ 2958: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -31019,10 +31024,10 @@ function wrappy (fn, cb) { */ var inherits = __nccwpck_require__(1669).inherits; -var ZipArchiveOutputStream = __nccwpck_require__(187).ZipArchiveOutputStream; -var ZipArchiveEntry = __nccwpck_require__(187).ZipArchiveEntry; +var ZipArchiveOutputStream = __nccwpck_require__(1121).ZipArchiveOutputStream; +var ZipArchiveEntry = __nccwpck_require__(1121).ZipArchiveEntry; -var util = __nccwpck_require__(4734); +var util = __nccwpck_require__(3920); /** * @constructor @@ -31201,7 +31206,7 @@ ZipStream.prototype.finalize = function() { /***/ }), -/***/ 3347: +/***/ 1101: /***/ ((module) => { module.exports = eval("require")("encoding"); @@ -31372,8 +31377,8 @@ var __webpack_exports__ = {}; var exports = __webpack_exports__; Object.defineProperty(exports, "__esModule", ({ value: true })); -const Inputs_1 = __nccwpck_require__(9574); -const NextcloudArtifact_1 = __nccwpck_require__(8730); +const Inputs_1 = __nccwpck_require__(1082); +const NextcloudArtifact_1 = __nccwpck_require__(7614); 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 eca9fec..59e69b6 100644 --- a/src/nextcloud/NextcloudClient.ts +++ b/src/nextcloud/NextcloudClient.ts @@ -106,10 +106,16 @@ export class NextcloudClient { const tempArtifactDir = path.join(os.tmpdir(), this.guid); const artifactPath = path.join(tempArtifactDir, `artifact-${this.artifact}`); await fs.mkdir(path.join(artifactPath, this.artifact), { recursive: true }); + const copies = []; for (let spec of specs) { - await fs.copyFile(spec.absolutePath, path.join(artifactPath, spec.uploadPath)); + const dstpath = path.join(artifactPath, spec.uploadPath); + const promise = fs.mkdir(path.dirname(dstpath)) + .then(() => fs.copyFile(spec.absolutePath, dstpath)) + copies.push(promise); } + await Promise.all(copies); + const archivePath = path.join(artifactPath, `${this.artifact}.zip`); await this.zip(path.join(artifactPath, this.artifact), archivePath);