From e96c1262aa908b5d9f79c518e3c2e6f37879a8f4 Mon Sep 17 00:00:00 2001 From: Trym Lund Flogard Date: Wed, 2 Jun 2021 16:40:06 +0200 Subject: [PATCH] fix directory exists --- dist/index.js | 846 +++++++++++++++---------------- src/nextcloud/NextcloudClient.ts | 2 +- 2 files changed, 424 insertions(+), 424 deletions(-) diff --git a/dist/index.js b/dist/index.js index 67075e1..2e4863a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 2258: +/***/ 7202: /***/ (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__(7389)); +const glob = __importStar(__nccwpck_require__(1347)); const fs_1 = __nccwpck_require__(5747); -const core_1 = __nccwpck_require__(2167); +const core_1 = __nccwpck_require__(7033); 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 = { /***/ }), -/***/ 3421: +/***/ 9574: /***/ (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__(2167)); -const NoFileOption_1 = __nccwpck_require__(1173); +const core = __importStar(__nccwpck_require__(7033)); +const NoFileOption_1 = __nccwpck_require__(1888); class Inputs { static get ArtifactName() { return core.getInput("name"); @@ -220,7 +220,7 @@ exports.Inputs = Inputs; /***/ }), -/***/ 1173: +/***/ 1888: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -246,7 +246,7 @@ var NoFileOption; /***/ }), -/***/ 1634: +/***/ 8730: /***/ (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__(2167)); -const FileFinder_1 = __nccwpck_require__(2258); -const Inputs_1 = __nccwpck_require__(3421); -const NextcloudClient_1 = __nccwpck_require__(6716); -const NoFileOption_1 = __nccwpck_require__(1173); +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); class NextcloudArtifact { constructor(name, path, errorBehavior) { this.name = name; @@ -342,7 +342,7 @@ exports.NextcloudArtifact = NextcloudArtifact; /***/ }), -/***/ 6716: +/***/ 9184: /***/ (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__(2167)); +const core = __importStar(__nccwpck_require__(7033)); const os = __importStar(__nccwpck_require__(2087)); -const archiver = __importStar(__nccwpck_require__(4076)); -const node_fetch_1 = __importDefault(__nccwpck_require__(4732)); -const Inputs_1 = __nccwpck_require__(3421); -const btoa_1 = __importDefault(__nccwpck_require__(869)); -const uuid_1 = __nccwpck_require__(7362); +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 fs = fsSync.promises; class NextcloudClient { constructor(endpoint, artifact, rootDirectory) { @@ -475,7 +475,7 @@ class NextcloudClient { return __awaiter(this, void 0, void 0, function* () { const tempArtifactDir = path.join(os.tmpdir(), this.guid); const artifactPath = path.join(tempArtifactDir, `artifact-${this.artifact}`); - yield fs.mkdir(artifactPath, { recursive: true }); + yield fs.mkdir(path.join(artifactPath, this.artifact), { recursive: true }); for (let spec of specs) { yield fs.copyFile(spec.absolutePath, path.join(artifactPath, spec.uploadPath)); } @@ -532,7 +532,7 @@ exports.NextcloudClient = NextcloudClient; /***/ }), -/***/ 6769: +/***/ 8832: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -559,7 +559,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__(6807); +const utils_1 = __nccwpck_require__(3441); /** * Commands * @@ -631,7 +631,7 @@ function escapeProperty(s) { /***/ }), -/***/ 2167: +/***/ 7033: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -666,9 +666,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__(6769); -const file_command_1 = __nccwpck_require__(9264); -const utils_1 = __nccwpck_require__(6807); +const command_1 = __nccwpck_require__(8832); +const file_command_1 = __nccwpck_require__(6193); +const utils_1 = __nccwpck_require__(3441); const os = __importStar(__nccwpck_require__(2087)); const path = __importStar(__nccwpck_require__(5622)); /** @@ -917,7 +917,7 @@ exports.getState = getState; /***/ }), -/***/ 9264: +/***/ 6193: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -948,7 +948,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__(6807); +const utils_1 = __nccwpck_require__(3441); function issueCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { @@ -966,7 +966,7 @@ exports.issueCommand = issueCommand; /***/ }), -/***/ 6807: +/***/ 3441: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -993,7 +993,7 @@ exports.toCommandValue = toCommandValue; /***/ }), -/***/ 7389: +/***/ 1347: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1009,7 +1009,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__(7814); +const internal_globber_1 = __nccwpck_require__(2599); /** * Constructs a globber * @@ -1026,7 +1026,7 @@ exports.create = create; /***/ }), -/***/ 3444: +/***/ 7981: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1052,7 +1052,7 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getOptions = void 0; -const core = __importStar(__nccwpck_require__(2167)); +const core = __importStar(__nccwpck_require__(7033)); /** * Returns a copy with defaults filled in. */ @@ -1083,7 +1083,7 @@ exports.getOptions = getOptions; /***/ }), -/***/ 7814: +/***/ 2599: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1137,14 +1137,14 @@ var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _ar }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DefaultGlobber = void 0; -const core = __importStar(__nccwpck_require__(2167)); +const core = __importStar(__nccwpck_require__(7033)); const fs = __importStar(__nccwpck_require__(5747)); -const globOptionsHelper = __importStar(__nccwpck_require__(3444)); +const globOptionsHelper = __importStar(__nccwpck_require__(7981)); const path = __importStar(__nccwpck_require__(5622)); -const patternHelper = __importStar(__nccwpck_require__(6071)); -const internal_match_kind_1 = __nccwpck_require__(6453); -const internal_pattern_1 = __nccwpck_require__(5554); -const internal_search_state_1 = __nccwpck_require__(8700); +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 IS_WINDOWS = process.platform === 'win32'; class DefaultGlobber { constructor(options) { @@ -1325,7 +1325,7 @@ exports.DefaultGlobber = DefaultGlobber; /***/ }), -/***/ 6453: +/***/ 357: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -1350,7 +1350,7 @@ var MatchKind; /***/ }), -/***/ 5077: +/***/ 1035: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1555,7 +1555,7 @@ exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; /***/ }), -/***/ 3637: +/***/ 8087: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1585,7 +1585,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__(5077)); +const pathHelper = __importStar(__nccwpck_require__(1035)); const assert_1 = __importDefault(__nccwpck_require__(2357)); const IS_WINDOWS = process.platform === 'win32'; /** @@ -1675,7 +1675,7 @@ exports.Path = Path; /***/ }), -/***/ 6071: +/***/ 9270: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1701,8 +1701,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__(5077)); -const internal_match_kind_1 = __nccwpck_require__(6453); +const pathHelper = __importStar(__nccwpck_require__(1035)); +const internal_match_kind_1 = __nccwpck_require__(357); const IS_WINDOWS = process.platform === 'win32'; /** * Given an array of patterns, returns an array of paths to search. @@ -1776,7 +1776,7 @@ exports.partialMatch = partialMatch; /***/ }), -/***/ 5554: +/***/ 6951: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1807,11 +1807,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__(5077)); +const pathHelper = __importStar(__nccwpck_require__(1035)); const assert_1 = __importDefault(__nccwpck_require__(2357)); -const minimatch_1 = __nccwpck_require__(2620); -const internal_match_kind_1 = __nccwpck_require__(6453); -const internal_path_1 = __nccwpck_require__(3637); +const minimatch_1 = __nccwpck_require__(9857); +const internal_match_kind_1 = __nccwpck_require__(357); +const internal_path_1 = __nccwpck_require__(8087); const IS_WINDOWS = process.platform === 'win32'; class Pattern { constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) { @@ -2038,7 +2038,7 @@ exports.Pattern = Pattern; /***/ }), -/***/ 8700: +/***/ 5977: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2056,7 +2056,7 @@ exports.SearchState = SearchState; /***/ }), -/***/ 48: +/***/ 7968: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -2066,15 +2066,15 @@ exports.SearchState = SearchState; * Licensed under the MIT license. * https://github.com/archiverjs/node-archiver/blob/master/LICENSE-MIT */ -var fs = __nccwpck_require__(284); +var fs = __nccwpck_require__(627); var path = __nccwpck_require__(5622); -var flatten = __nccwpck_require__(5924); -var difference = __nccwpck_require__(8530); -var union = __nccwpck_require__(6266); -var isPlainObject = __nccwpck_require__(4485); +var flatten = __nccwpck_require__(4382); +var difference = __nccwpck_require__(1375); +var union = __nccwpck_require__(222); +var isPlainObject = __nccwpck_require__(3449); -var glob = __nccwpck_require__(2741); +var glob = __nccwpck_require__(3547); var file = module.exports = {}; @@ -2272,7 +2272,7 @@ file.normalizeFilesArray = function(data) { /***/ }), -/***/ 7127: +/***/ 4734: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -2282,18 +2282,18 @@ file.normalizeFilesArray = function(data) { * Licensed under the MIT license. * https://github.com/archiverjs/archiver-utils/blob/master/LICENSE */ -var fs = __nccwpck_require__(284); +var fs = __nccwpck_require__(627); var path = __nccwpck_require__(5622); var nutil = __nccwpck_require__(1669); -var lazystream = __nccwpck_require__(785); -var normalizePath = __nccwpck_require__(1838); -var defaults = __nccwpck_require__(4342); +var lazystream = __nccwpck_require__(1439); +var normalizePath = __nccwpck_require__(8095); +var defaults = __nccwpck_require__(1894); var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(5194).PassThrough; +var PassThrough = __nccwpck_require__(3260).PassThrough; var utils = module.exports = {}; -utils.file = __nccwpck_require__(48); +utils.file = __nccwpck_require__(7968); function assertPath(path) { if (typeof path !== 'string') { @@ -2435,7 +2435,7 @@ utils.walkdir = function(dirpath, base, callback) { /***/ }), -/***/ 1216: +/***/ 9646: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2469,7 +2469,7 @@ utils.walkdir = function(dirpath, base, callback) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ /**/ @@ -2484,12 +2484,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ -var Readable = __nccwpck_require__(5829); -var Writable = __nccwpck_require__(4892); +var Readable = __nccwpck_require__(3072); +var Writable = __nccwpck_require__(7489); util.inherits(Duplex, Readable); @@ -2573,7 +2573,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 3196: +/***/ 9992: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2606,11 +2606,11 @@ Duplex.prototype._destroy = function (err, cb) { module.exports = PassThrough; -var Transform = __nccwpck_require__(9976); +var Transform = __nccwpck_require__(5764); /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ util.inherits(PassThrough, Transform); @@ -2627,7 +2627,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 5829: +/***/ 3072: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2656,13 +2656,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(6840); +var isArray = __nccwpck_require__(5553); /**/ /**/ @@ -2680,12 +2680,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(23); +var Stream = __nccwpck_require__(7629); /**/ /**/ -var Buffer = __nccwpck_require__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -2697,8 +2697,8 @@ function _isUint8Array(obj) { /**/ /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ /**/ @@ -2711,8 +2711,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(7415); -var destroyImpl = __nccwpck_require__(1106); +var BufferList = __nccwpck_require__(1396); +var destroyImpl = __nccwpck_require__(7675); var StringDecoder; util.inherits(Readable, Stream); @@ -2732,7 +2732,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(1216); + Duplex = Duplex || __nccwpck_require__(9646); options = options || {}; @@ -2802,14 +2802,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(909)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(1216); + Duplex = Duplex || __nccwpck_require__(9646); if (!(this instanceof Readable)) return new Readable(options); @@ -2958,7 +2958,7 @@ Readable.prototype.isPaused = function () { // backwards compatibility. Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(909)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -3653,7 +3653,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 9976: +/***/ 5764: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3724,11 +3724,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(1216); +var Duplex = __nccwpck_require__(9646); /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ util.inherits(Transform, Duplex); @@ -3874,7 +3874,7 @@ function done(stream, er, data) { /***/ }), -/***/ 4892: +/***/ 7489: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3907,7 +3907,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ module.exports = Writable; @@ -3944,23 +3944,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(6442) + deprecate: __nccwpck_require__(6766) }; /**/ /**/ -var Stream = __nccwpck_require__(23); +var Stream = __nccwpck_require__(7629); /**/ /**/ -var Buffer = __nccwpck_require__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -3971,14 +3971,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(1106); +var destroyImpl = __nccwpck_require__(7675); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(1216); + Duplex = Duplex || __nccwpck_require__(9646); options = options || {}; @@ -4128,7 +4128,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(1216); + Duplex = Duplex || __nccwpck_require__(9646); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -4568,7 +4568,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 7415: +/***/ 1396: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4576,7 +4576,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__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -4654,7 +4654,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 1106: +/***/ 7675: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4662,7 +4662,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ // undocumented cb() API, needed for core, not for public API @@ -4735,7 +4735,7 @@ module.exports = { /***/ }), -/***/ 23: +/***/ 7629: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -4743,7 +4743,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 5194: +/***/ 3260: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -4757,19 +4757,19 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { exports.PassThrough = Stream.PassThrough; exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(5829); + exports = module.exports = __nccwpck_require__(3072); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(4892); - exports.Duplex = __nccwpck_require__(1216); - exports.Transform = __nccwpck_require__(9976); - exports.PassThrough = __nccwpck_require__(3196); + exports.Writable = __nccwpck_require__(7489); + exports.Duplex = __nccwpck_require__(9646); + exports.Transform = __nccwpck_require__(5764); + exports.PassThrough = __nccwpck_require__(9992); } /***/ }), -/***/ 4076: +/***/ 7124: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -4779,7 +4779,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__(8620); +var Archiver = __nccwpck_require__(7787); var formats = {}; @@ -4851,15 +4851,15 @@ vending.isRegisteredFormat = function (format) { return false; }; -vending.registerFormat('zip', __nccwpck_require__(8489)); -vending.registerFormat('tar', __nccwpck_require__(9682)); -vending.registerFormat('json', __nccwpck_require__(3324)); +vending.registerFormat('zip', __nccwpck_require__(561)); +vending.registerFormat('tar', __nccwpck_require__(1904)); +vending.registerFormat('json', __nccwpck_require__(3338)); module.exports = vending; /***/ }), -/***/ 8620: +/***/ 7787: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -4870,14 +4870,14 @@ module.exports = vending; * @copyright (c) 2012-2014 Chris Talkington, contributors. */ var fs = __nccwpck_require__(5747); -var glob = __nccwpck_require__(2588); -var async = __nccwpck_require__(3050); +var glob = __nccwpck_require__(3745); +var async = __nccwpck_require__(9209); var path = __nccwpck_require__(5622); -var util = __nccwpck_require__(7127); +var util = __nccwpck_require__(4734); var inherits = __nccwpck_require__(1669).inherits; -var ArchiverError = __nccwpck_require__(7521); -var Transform = __nccwpck_require__(2033).Transform; +var ArchiverError = __nccwpck_require__(7362); +var Transform = __nccwpck_require__(7733).Transform; var win32 = process.platform === 'win32'; @@ -5840,7 +5840,7 @@ module.exports = Archiver; /***/ }), -/***/ 7521: +/***/ 7362: /***/ ((module, exports, __nccwpck_require__) => { /** @@ -5886,7 +5886,7 @@ exports = module.exports = ArchiverError; /***/ }), -/***/ 3324: +/***/ 3338: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -5897,10 +5897,10 @@ exports = module.exports = ArchiverError; * @copyright (c) 2012-2014 Chris Talkington, contributors. */ var inherits = __nccwpck_require__(1669).inherits; -var Transform = __nccwpck_require__(2033).Transform; +var Transform = __nccwpck_require__(7733).Transform; -var crc32 = __nccwpck_require__(8698); -var util = __nccwpck_require__(7127); +var crc32 = __nccwpck_require__(3479); +var util = __nccwpck_require__(4734); /** * @constructor @@ -6003,7 +6003,7 @@ module.exports = Json; /***/ }), -/***/ 9682: +/***/ 1904: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6015,8 +6015,8 @@ module.exports = Json; */ var zlib = __nccwpck_require__(8761); -var engine = __nccwpck_require__(9385); -var util = __nccwpck_require__(7127); +var engine = __nccwpck_require__(8032); +var util = __nccwpck_require__(4734); /** * @constructor @@ -6177,7 +6177,7 @@ module.exports = Tar; /***/ }), -/***/ 8489: +/***/ 561: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6187,8 +6187,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__(548); -var util = __nccwpck_require__(7127); +var engine = __nccwpck_require__(223); +var util = __nccwpck_require__(4734); /** * @constructor @@ -6304,7 +6304,7 @@ module.exports = Zip; /***/ }), -/***/ 3050: +/***/ 9209: /***/ (function(__unused_webpack_module, exports) { (function (global, factory) { @@ -11156,7 +11156,7 @@ module.exports = Zip; /***/ }), -/***/ 671: +/***/ 4920: /***/ ((module) => { "use strict"; @@ -11226,7 +11226,7 @@ function range(a, b, str) { /***/ }), -/***/ 2184: +/***/ 9777: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -11630,15 +11630,15 @@ module.exports = BufferList /***/ }), -/***/ 244: +/***/ 4396: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const DuplexStream = __nccwpck_require__(2033).Duplex -const inherits = __nccwpck_require__(6087) -const BufferList = __nccwpck_require__(2184) +const DuplexStream = __nccwpck_require__(7733).Duplex +const inherits = __nccwpck_require__(458) +const BufferList = __nccwpck_require__(9777) function BufferListStream (callback) { if (!(this instanceof BufferListStream)) { @@ -11722,11 +11722,11 @@ module.exports.BufferList = BufferList /***/ }), -/***/ 1801: +/***/ 1048: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var concatMap = __nccwpck_require__(1947); -var balanced = __nccwpck_require__(671); +var concatMap = __nccwpck_require__(3285); +var balanced = __nccwpck_require__(4920); module.exports = expandTop; @@ -11930,7 +11930,7 @@ function expand(str, isTop) { /***/ }), -/***/ 869: +/***/ 3266: /***/ ((module) => { (function () { @@ -11954,7 +11954,7 @@ function expand(str, isTop) { /***/ }), -/***/ 8698: +/***/ 3479: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Buffer = __nccwpck_require__(4293).Buffer; @@ -12072,7 +12072,7 @@ module.exports = crc32; /***/ }), -/***/ 4157: +/***/ 2833: /***/ ((module) => { /** @@ -12094,7 +12094,7 @@ ArchiveEntry.prototype.isDirectory = function() {}; /***/ }), -/***/ 5332: +/***/ 9651: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12105,10 +12105,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__(2033).Transform; +var Transform = __nccwpck_require__(7733).Transform; -var ArchiveEntry = __nccwpck_require__(4157); -var util = __nccwpck_require__(8221); +var ArchiveEntry = __nccwpck_require__(2833); +var util = __nccwpck_require__(1715); var ArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ArchiveOutputStream)) { @@ -12217,7 +12217,7 @@ ArchiveOutputStream.prototype.write = function(chunk, cb) { /***/ }), -/***/ 4119: +/***/ 6031: /***/ ((module) => { /** @@ -12295,7 +12295,7 @@ module.exports = { /***/ }), -/***/ 8328: +/***/ 5742: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12305,7 +12305,7 @@ module.exports = { * Licensed under the MIT license. * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ -var zipUtil = __nccwpck_require__(2472); +var zipUtil = __nccwpck_require__(1871); var DATA_DESCRIPTOR_FLAG = 1 << 3; var ENCRYPTION_FLAG = 1 << 0; @@ -12402,7 +12402,7 @@ GeneralPurposeBit.prototype.usesUTF8ForNames = function() { /***/ }), -/***/ 8155: +/***/ 7576: /***/ ((module) => { /** @@ -12461,7 +12461,7 @@ module.exports = { /***/ }), -/***/ 2472: +/***/ 1871: /***/ ((module) => { /** @@ -12541,7 +12541,7 @@ util.toDosTime = function(d) { /***/ }), -/***/ 6583: +/***/ 5382: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12552,14 +12552,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__(1838); +var normalizePath = __nccwpck_require__(8095); -var ArchiveEntry = __nccwpck_require__(4157); -var GeneralPurposeBit = __nccwpck_require__(8328); -var UnixStat = __nccwpck_require__(8155); +var ArchiveEntry = __nccwpck_require__(2833); +var GeneralPurposeBit = __nccwpck_require__(5742); +var UnixStat = __nccwpck_require__(7576); -var constants = __nccwpck_require__(4119); -var zipUtil = __nccwpck_require__(2472); +var constants = __nccwpck_require__(6031); +var zipUtil = __nccwpck_require__(1871); var ZipArchiveEntry = module.exports = function(name) { if (!(this instanceof ZipArchiveEntry)) { @@ -12961,7 +12961,7 @@ ZipArchiveEntry.prototype.isZip64 = function() { /***/ }), -/***/ 3495: +/***/ 229: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -12972,17 +12972,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__(8698); -var {CRC32Stream} = __nccwpck_require__(2219); -var {DeflateCRC32Stream} = __nccwpck_require__(2219); +var crc32 = __nccwpck_require__(3479); +var {CRC32Stream} = __nccwpck_require__(484); +var {DeflateCRC32Stream} = __nccwpck_require__(484); -var ArchiveOutputStream = __nccwpck_require__(5332); -var ZipArchiveEntry = __nccwpck_require__(6583); -var GeneralPurposeBit = __nccwpck_require__(8328); +var ArchiveOutputStream = __nccwpck_require__(9651); +var ZipArchiveEntry = __nccwpck_require__(5382); +var GeneralPurposeBit = __nccwpck_require__(5742); -var constants = __nccwpck_require__(4119); -var util = __nccwpck_require__(8221); -var zipUtil = __nccwpck_require__(2472); +var constants = __nccwpck_require__(6031); +var util = __nccwpck_require__(1715); +var zipUtil = __nccwpck_require__(1871); var ZipArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ZipArchiveOutputStream)) { @@ -13408,7 +13408,7 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { /***/ }), -/***/ 9044: +/***/ 187: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -13419,15 +13419,15 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ module.exports = { - ArchiveEntry: __nccwpck_require__(4157), - ZipArchiveEntry: __nccwpck_require__(6583), - ArchiveOutputStream: __nccwpck_require__(5332), - ZipArchiveOutputStream: __nccwpck_require__(3495) + ArchiveEntry: __nccwpck_require__(2833), + ZipArchiveEntry: __nccwpck_require__(5382), + ArchiveOutputStream: __nccwpck_require__(9651), + ZipArchiveOutputStream: __nccwpck_require__(229) }; /***/ }), -/***/ 8221: +/***/ 1715: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -13438,7 +13438,7 @@ module.exports = { * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT */ var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(2033).PassThrough; +var PassThrough = __nccwpck_require__(7733).PassThrough; var util = module.exports = {}; @@ -13463,7 +13463,7 @@ util.normalizeInputSource = function(source) { /***/ }), -/***/ 1947: +/***/ 3285: /***/ ((module) => { module.exports = function (xs, fn) { @@ -13483,7 +13483,7 @@ var isArray = Array.isArray || function (xs) { /***/ }), -/***/ 6513: +/***/ 1264: /***/ ((__unused_webpack_module, exports) => { // Copyright Joyent, Inc. and other Node contributors. @@ -13597,7 +13597,7 @@ function objectToString(o) { /***/ }), -/***/ 6484: +/***/ 5661: /***/ ((__unused_webpack_module, exports) => { /* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */ @@ -13714,7 +13714,7 @@ CRC32.str = crc32_str; /***/ }), -/***/ 602: +/***/ 466: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13728,9 +13728,9 @@ CRC32.str = crc32_str; -const {Transform} = __nccwpck_require__(2033); +const {Transform} = __nccwpck_require__(7733); -const crc32 = __nccwpck_require__(6484); +const crc32 = __nccwpck_require__(5661); class CRC32Stream extends Transform { constructor(options) { @@ -13770,7 +13770,7 @@ module.exports = CRC32Stream; /***/ }), -/***/ 7074: +/***/ 5943: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13786,7 +13786,7 @@ module.exports = CRC32Stream; const {DeflateRaw} = __nccwpck_require__(8761); -const crc32 = __nccwpck_require__(6484); +const crc32 = __nccwpck_require__(5661); class DeflateCRC32Stream extends DeflateRaw { constructor(options) { @@ -13840,7 +13840,7 @@ module.exports = DeflateCRC32Stream; /***/ }), -/***/ 2219: +/***/ 484: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13855,17 +13855,17 @@ module.exports = DeflateCRC32Stream; module.exports = { - CRC32Stream: __nccwpck_require__(602), - DeflateCRC32Stream: __nccwpck_require__(7074) + CRC32Stream: __nccwpck_require__(466), + DeflateCRC32Stream: __nccwpck_require__(5943) } /***/ }), -/***/ 2322: +/***/ 3481: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var once = __nccwpck_require__(3691); +var once = __nccwpck_require__(7049); var noop = function() {}; @@ -13963,7 +13963,7 @@ module.exports = eos; /***/ }), -/***/ 8345: +/***/ 528: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(5747).constants || __nccwpck_require__(7619) @@ -13971,7 +13971,7 @@ module.exports = __nccwpck_require__(5747).constants || __nccwpck_require__(7619 /***/ }), -/***/ 8727: +/***/ 4043: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = realpath @@ -13987,7 +13987,7 @@ var origRealpathSync = fs.realpathSync var version = process.version var ok = /^v[0-5]\./.test(version) -var old = __nccwpck_require__(3244) +var old = __nccwpck_require__(36) function newError (er) { return er && er.syscall === 'realpath' && ( @@ -14044,7 +14044,7 @@ function unmonkeypatch () { /***/ }), -/***/ 3244: +/***/ 36: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { // Copyright Joyent, Inc. and other Node contributors. @@ -14354,7 +14354,7 @@ exports.realpath = function realpath(p, cache, cb) { /***/ }), -/***/ 1731: +/***/ 8513: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { exports.setopts = setopts @@ -14370,8 +14370,8 @@ function ownProp (obj, field) { } var path = __nccwpck_require__(5622) -var minimatch = __nccwpck_require__(2620) -var isAbsolute = __nccwpck_require__(1874) +var minimatch = __nccwpck_require__(9857) +var isAbsolute = __nccwpck_require__(4236) var Minimatch = minimatch.Minimatch function alphasort (a, b) { @@ -14595,7 +14595,7 @@ function childrenIgnored (self, path) { /***/ }), -/***/ 2741: +/***/ 3547: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // Approach: @@ -14641,24 +14641,24 @@ function childrenIgnored (self, path) { module.exports = glob var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(8727) -var minimatch = __nccwpck_require__(2620) +var rp = __nccwpck_require__(4043) +var minimatch = __nccwpck_require__(9857) var Minimatch = minimatch.Minimatch -var inherits = __nccwpck_require__(6087) +var inherits = __nccwpck_require__(458) var EE = __nccwpck_require__(8614).EventEmitter var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(1874) -var globSync = __nccwpck_require__(9889) -var common = __nccwpck_require__(1731) +var isAbsolute = __nccwpck_require__(4236) +var globSync = __nccwpck_require__(8271) +var common = __nccwpck_require__(8513) var setopts = common.setopts var ownProp = common.ownProp -var inflight = __nccwpck_require__(9137) +var inflight = __nccwpck_require__(9351) var util = __nccwpck_require__(1669) var childrenIgnored = common.childrenIgnored var isIgnored = common.isIgnored -var once = __nccwpck_require__(3691) +var once = __nccwpck_require__(7049) function glob (pattern, options, cb) { if (typeof options === 'function') cb = options, options = {} @@ -15390,22 +15390,22 @@ Glob.prototype._stat2 = function (f, abs, er, stat, cb) { /***/ }), -/***/ 9889: +/***/ 8271: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = globSync globSync.GlobSync = GlobSync var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(8727) -var minimatch = __nccwpck_require__(2620) +var rp = __nccwpck_require__(4043) +var minimatch = __nccwpck_require__(9857) var Minimatch = minimatch.Minimatch -var Glob = __nccwpck_require__(2741).Glob +var Glob = __nccwpck_require__(3547).Glob var util = __nccwpck_require__(1669) var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(1874) -var common = __nccwpck_require__(1731) +var isAbsolute = __nccwpck_require__(4236) +var common = __nccwpck_require__(8513) var setopts = common.setopts var ownProp = common.ownProp var childrenIgnored = common.childrenIgnored @@ -15881,7 +15881,7 @@ GlobSync.prototype._makeAbs = function (f) { /***/ }), -/***/ 5571: +/***/ 4745: /***/ ((module) => { "use strict"; @@ -15912,13 +15912,13 @@ function clone (obj) { /***/ }), -/***/ 284: +/***/ 627: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var fs = __nccwpck_require__(5747) -var polyfills = __nccwpck_require__(967) -var legacy = __nccwpck_require__(2851) -var clone = __nccwpck_require__(5571) +var polyfills = __nccwpck_require__(6881) +var legacy = __nccwpck_require__(7042) +var clone = __nccwpck_require__(4745) var util = __nccwpck_require__(1669) @@ -16292,7 +16292,7 @@ function retry () { /***/ }), -/***/ 2851: +/***/ 7042: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413).Stream @@ -16417,7 +16417,7 @@ function legacy (fs) { /***/ }), -/***/ 967: +/***/ 6881: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var constants = __nccwpck_require__(7619) @@ -16770,12 +16770,12 @@ function patch (fs) { /***/ }), -/***/ 9137: +/***/ 9351: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(9595) +var wrappy = __nccwpck_require__(8928) var reqs = Object.create(null) -var once = __nccwpck_require__(3691) +var once = __nccwpck_require__(7049) module.exports = wrappy(inflight) @@ -16831,7 +16831,7 @@ function slice (args) { /***/ }), -/***/ 6087: +/***/ 458: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { try { @@ -16841,13 +16841,13 @@ try { module.exports = util.inherits; } catch (e) { /* istanbul ignore next */ - module.exports = __nccwpck_require__(9569); + module.exports = __nccwpck_require__(9716); } /***/ }), -/***/ 9569: +/***/ 9716: /***/ ((module) => { if (typeof Object.create === 'function') { @@ -16881,7 +16881,7 @@ if (typeof Object.create === 'function') { /***/ }), -/***/ 6840: +/***/ 5553: /***/ ((module) => { var toString = {}.toString; @@ -16893,11 +16893,11 @@ module.exports = Array.isArray || function (arr) { /***/ }), -/***/ 785: +/***/ 1439: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669); -var PassThrough = __nccwpck_require__(2765); +var PassThrough = __nccwpck_require__(8769); module.exports = { Readable: Readable, @@ -16954,7 +16954,7 @@ function Writable(fn, options) { /***/ }), -/***/ 1124: +/***/ 4751: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -16988,7 +16988,7 @@ function Writable(fn, options) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ /**/ @@ -17003,12 +17003,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ -var Readable = __nccwpck_require__(8161); -var Writable = __nccwpck_require__(792); +var Readable = __nccwpck_require__(152); +var Writable = __nccwpck_require__(4978); util.inherits(Duplex, Readable); @@ -17092,7 +17092,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 5466: +/***/ 687: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17125,11 +17125,11 @@ Duplex.prototype._destroy = function (err, cb) { module.exports = PassThrough; -var Transform = __nccwpck_require__(4441); +var Transform = __nccwpck_require__(6026); /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ util.inherits(PassThrough, Transform); @@ -17146,7 +17146,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 8161: +/***/ 152: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17175,13 +17175,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(6840); +var isArray = __nccwpck_require__(5553); /**/ /**/ @@ -17199,12 +17199,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(5024); +var Stream = __nccwpck_require__(2367); /**/ /**/ -var Buffer = __nccwpck_require__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -17216,8 +17216,8 @@ function _isUint8Array(obj) { /**/ /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ /**/ @@ -17230,8 +17230,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(4113); -var destroyImpl = __nccwpck_require__(8198); +var BufferList = __nccwpck_require__(1215); +var destroyImpl = __nccwpck_require__(236); var StringDecoder; util.inherits(Readable, Stream); @@ -17251,7 +17251,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(1124); + Duplex = Duplex || __nccwpck_require__(4751); options = options || {}; @@ -17321,14 +17321,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(909)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(1124); + Duplex = Duplex || __nccwpck_require__(4751); if (!(this instanceof Readable)) return new Readable(options); @@ -17477,7 +17477,7 @@ Readable.prototype.isPaused = function () { // backwards compatibility. Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(909)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -18172,7 +18172,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 4441: +/***/ 6026: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18243,11 +18243,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(1124); +var Duplex = __nccwpck_require__(4751); /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ util.inherits(Transform, Duplex); @@ -18393,7 +18393,7 @@ function done(stream, er, data) { /***/ }), -/***/ 792: +/***/ 4978: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18426,7 +18426,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ module.exports = Writable; @@ -18463,23 +18463,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(6513)); -util.inherits = __nccwpck_require__(6087); +var util = Object.create(__nccwpck_require__(1264)); +util.inherits = __nccwpck_require__(458); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(6442) + deprecate: __nccwpck_require__(6766) }; /**/ /**/ -var Stream = __nccwpck_require__(5024); +var Stream = __nccwpck_require__(2367); /**/ /**/ -var Buffer = __nccwpck_require__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -18490,14 +18490,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(8198); +var destroyImpl = __nccwpck_require__(236); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(1124); + Duplex = Duplex || __nccwpck_require__(4751); options = options || {}; @@ -18647,7 +18647,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(1124); + Duplex = Duplex || __nccwpck_require__(4751); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -19087,7 +19087,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 4113: +/***/ 1215: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19095,7 +19095,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__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -19173,7 +19173,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 8198: +/***/ 236: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19181,7 +19181,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(4886); +var pna = __nccwpck_require__(6438); /**/ // undocumented cb() API, needed for core, not for public API @@ -19254,7 +19254,7 @@ module.exports = { /***/ }), -/***/ 5024: +/***/ 2367: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -19262,15 +19262,15 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 2765: +/***/ 8769: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(6611).PassThrough +module.exports = __nccwpck_require__(5393).PassThrough /***/ }), -/***/ 6611: +/***/ 5393: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -19284,19 +19284,19 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { exports.PassThrough = Stream.PassThrough; exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(8161); + exports = module.exports = __nccwpck_require__(152); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(792); - exports.Duplex = __nccwpck_require__(1124); - exports.Transform = __nccwpck_require__(4441); - exports.PassThrough = __nccwpck_require__(5466); + exports.Writable = __nccwpck_require__(4978); + exports.Duplex = __nccwpck_require__(4751); + exports.Transform = __nccwpck_require__(6026); + exports.PassThrough = __nccwpck_require__(687); } /***/ }), -/***/ 4342: +/***/ 1894: /***/ ((module) => { /** @@ -19971,7 +19971,7 @@ module.exports = defaults; /***/ }), -/***/ 8530: +/***/ 1375: /***/ ((module) => { /** @@ -21148,7 +21148,7 @@ module.exports = difference; /***/ }), -/***/ 5924: +/***/ 4382: /***/ ((module) => { /** @@ -21504,7 +21504,7 @@ module.exports = flatten; /***/ }), -/***/ 4485: +/***/ 3449: /***/ ((module) => { /** @@ -21650,7 +21650,7 @@ module.exports = isPlainObject; /***/ }), -/***/ 6266: +/***/ 222: /***/ ((module) => { /** @@ -22838,7 +22838,7 @@ module.exports = union; /***/ }), -/***/ 2620: +/***/ 9857: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = minimatch @@ -22850,7 +22850,7 @@ try { } catch (er) {} var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {} -var expand = __nccwpck_require__(1801) +var expand = __nccwpck_require__(1048) var plTypes = { '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, @@ -23768,7 +23768,7 @@ function regExpEscape (s) { /***/ }), -/***/ 4732: +/***/ 2779: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; @@ -23933,7 +23933,7 @@ FetchError.prototype.name = 'FetchError'; let convert; try { - convert = __nccwpck_require__(983).convert; + convert = __nccwpck_require__(3347).convert; } catch (e) {} const INTERNALS = Symbol('Body internals'); @@ -25425,7 +25425,7 @@ exports.FetchError = FetchError; /***/ }), -/***/ 1838: +/***/ 8095: /***/ ((module) => { /*! @@ -25467,10 +25467,10 @@ module.exports = function(path, stripTrailing) { /***/ }), -/***/ 3691: +/***/ 7049: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(9595) +var wrappy = __nccwpck_require__(8928) module.exports = wrappy(once) module.exports.strict = wrappy(onceStrict) @@ -25516,7 +25516,7 @@ function onceStrict (fn) { /***/ }), -/***/ 1874: +/***/ 4236: /***/ ((module) => { "use strict"; @@ -25544,7 +25544,7 @@ module.exports.win32 = win32; /***/ }), -/***/ 4886: +/***/ 6438: /***/ ((module) => { "use strict"; @@ -25597,7 +25597,7 @@ function nextTick(fn, arg1, arg2, arg3) { /***/ }), -/***/ 4850: +/***/ 5876: /***/ ((module) => { "use strict"; @@ -25721,7 +25721,7 @@ module.exports.q = codes; /***/ }), -/***/ 1459: +/***/ 1977: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25766,11 +25766,11 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; -var Readable = __nccwpck_require__(2816); +var Readable = __nccwpck_require__(5461); -var Writable = __nccwpck_require__(2571); +var Writable = __nccwpck_require__(5197); -__nccwpck_require__(6087)(Duplex, Readable); +__nccwpck_require__(458)(Duplex, Readable); { // Allow the keys array to be GC'ed. @@ -25867,7 +25867,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { /***/ }), -/***/ 8175: +/***/ 2817: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25898,9 +25898,9 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { module.exports = PassThrough; -var Transform = __nccwpck_require__(5333); +var Transform = __nccwpck_require__(3994); -__nccwpck_require__(6087)(PassThrough, Transform); +__nccwpck_require__(458)(PassThrough, Transform); function PassThrough(options) { if (!(this instanceof PassThrough)) return new PassThrough(options); @@ -25913,7 +25913,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 2816: +/***/ 5461: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25958,7 +25958,7 @@ var EElistenerCount = function EElistenerCount(emitter, type) { /**/ -var Stream = __nccwpck_require__(5490); +var Stream = __nccwpck_require__(5032); /**/ @@ -25988,14 +25988,14 @@ if (debugUtil && debugUtil.debuglog) { /**/ -var BufferList = __nccwpck_require__(7899); +var BufferList = __nccwpck_require__(9471); -var destroyImpl = __nccwpck_require__(8425); +var destroyImpl = __nccwpck_require__(4180); -var _require = __nccwpck_require__(483), +var _require = __nccwpck_require__(3817), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(4850)/* .codes */ .q, +var _require$codes = __nccwpck_require__(5876)/* .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 +26006,7 @@ var StringDecoder; var createReadableStreamAsyncIterator; var from; -__nccwpck_require__(6087)(Readable, Stream); +__nccwpck_require__(458)(Readable, Stream); var errorOrDestroy = destroyImpl.errorOrDestroy; var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume']; @@ -26023,7 +26023,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(1459); + Duplex = Duplex || __nccwpck_require__(1977); 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 +26079,14 @@ function ReadableState(options, stream, isDuplex) { this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(909)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(1459); + Duplex = Duplex || __nccwpck_require__(1977); 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 +26241,7 @@ Readable.prototype.isPaused = function () { Readable.prototype.setEncoding = function (enc) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(909)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(9495)/* .StringDecoder */ .s; var decoder = new StringDecoder(enc); this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8 @@ -26925,7 +26925,7 @@ Readable.prototype.wrap = function (stream) { if (typeof Symbol === 'function') { Readable.prototype[Symbol.asyncIterator] = function () { if (createReadableStreamAsyncIterator === undefined) { - createReadableStreamAsyncIterator = __nccwpck_require__(7771); + createReadableStreamAsyncIterator = __nccwpck_require__(4498); } return createReadableStreamAsyncIterator(this); @@ -27027,7 +27027,7 @@ function endReadableNT(state, stream) { if (typeof Symbol === 'function') { Readable.from = function (iterable, opts) { if (from === undefined) { - from = __nccwpck_require__(4944); + from = __nccwpck_require__(3875); } return from(Readable, iterable, opts); @@ -27044,7 +27044,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 5333: +/***/ 3994: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27113,15 +27113,15 @@ function indexOf(xs, x) { module.exports = Transform; -var _require$codes = __nccwpck_require__(4850)/* .codes */ .q, +var _require$codes = __nccwpck_require__(5876)/* .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__(1459); +var Duplex = __nccwpck_require__(1977); -__nccwpck_require__(6087)(Transform, Duplex); +__nccwpck_require__(458)(Transform, Duplex); function afterTransform(er, data) { var ts = this._transformState; @@ -27252,7 +27252,7 @@ function done(stream, er, data) { /***/ }), -/***/ 2571: +/***/ 5197: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27315,13 +27315,13 @@ Writable.WritableState = WritableState; /**/ var internalUtil = { - deprecate: __nccwpck_require__(6442) + deprecate: __nccwpck_require__(6766) }; /**/ /**/ -var Stream = __nccwpck_require__(5490); +var Stream = __nccwpck_require__(5032); /**/ @@ -27337,12 +27337,12 @@ function _isUint8Array(obj) { return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; } -var destroyImpl = __nccwpck_require__(8425); +var destroyImpl = __nccwpck_require__(4180); -var _require = __nccwpck_require__(483), +var _require = __nccwpck_require__(3817), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(4850)/* .codes */ .q, +var _require$codes = __nccwpck_require__(5876)/* .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 +27354,12 @@ var _require$codes = __nccwpck_require__(4850)/* .codes */ .q, var errorOrDestroy = destroyImpl.errorOrDestroy; -__nccwpck_require__(6087)(Writable, Stream); +__nccwpck_require__(458)(Writable, Stream); function nop() {} function WritableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(1459); + Duplex = Duplex || __nccwpck_require__(1977); 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 +27485,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(1459); // Writable ctor is applied to Duplexes, too. + Duplex = Duplex || __nccwpck_require__(1977); // 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 +27956,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 7771: +/***/ 4498: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27966,7 +27966,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__(8883); +var finished = __nccwpck_require__(6254); var kLastResolve = Symbol('lastResolve'); var kLastReject = Symbol('lastReject'); @@ -28170,7 +28170,7 @@ module.exports = createReadableStreamAsyncIterator; /***/ }), -/***/ 7899: +/***/ 9471: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28387,7 +28387,7 @@ function () { /***/ }), -/***/ 8425: +/***/ 4180: /***/ ((module) => { "use strict"; @@ -28499,7 +28499,7 @@ module.exports = { /***/ }), -/***/ 8883: +/***/ 6254: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28507,7 +28507,7 @@ module.exports = { // permission from the author, Mathias Buus (@mafintosh). -var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(4850)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; +var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(5876)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; function once(callback) { var called = false; @@ -28610,7 +28610,7 @@ module.exports = eos; /***/ }), -/***/ 4944: +/***/ 3875: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28626,7 +28626,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__(4850)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; +var ERR_INVALID_ARG_TYPE = __nccwpck_require__(5876)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; function from(Readable, iterable, opts) { var iterator; @@ -28681,7 +28681,7 @@ module.exports = from; /***/ }), -/***/ 6687: +/***/ 4182: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28700,7 +28700,7 @@ function once(callback) { }; } -var _require$codes = __nccwpck_require__(4850)/* .codes */ .q, +var _require$codes = __nccwpck_require__(5876)/* .codes */ .q, ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED; @@ -28719,7 +28719,7 @@ function destroyer(stream, reading, writing, callback) { stream.on('close', function () { closed = true; }); - if (eos === undefined) eos = __nccwpck_require__(8883); + if (eos === undefined) eos = __nccwpck_require__(6254); eos(stream, { readable: reading, writable: writing @@ -28785,13 +28785,13 @@ module.exports = pipeline; /***/ }), -/***/ 483: +/***/ 3817: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var ERR_INVALID_OPT_VALUE = __nccwpck_require__(4850)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE; +var ERR_INVALID_OPT_VALUE = __nccwpck_require__(5876)/* .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 +28819,7 @@ module.exports = { /***/ }), -/***/ 5490: +/***/ 5032: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -28827,7 +28827,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 2033: +/***/ 7733: /***/ ((module, exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413); @@ -28836,28 +28836,28 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) { Object.assign(module.exports, Stream); module.exports.Stream = Stream; } else { - exports = module.exports = __nccwpck_require__(2816); + exports = module.exports = __nccwpck_require__(5461); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(2571); - exports.Duplex = __nccwpck_require__(1459); - exports.Transform = __nccwpck_require__(5333); - exports.PassThrough = __nccwpck_require__(8175); - exports.finished = __nccwpck_require__(8883); - exports.pipeline = __nccwpck_require__(6687); + 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); } /***/ }), -/***/ 2588: +/***/ 3745: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = readdirGlob; const fs = __nccwpck_require__(5747); const { EventEmitter } = __nccwpck_require__(8614); -const { Minimatch } = __nccwpck_require__(2620); +const { Minimatch } = __nccwpck_require__(9857); const { resolve } = __nccwpck_require__(5622); function readdir(dir, strict) { @@ -29099,7 +29099,7 @@ readdirGlob.ReaddirGlob = ReaddirGlob; /***/ }), -/***/ 6148: +/***/ 8275: /***/ ((module, exports, __nccwpck_require__) => { /* eslint-disable node/no-deprecated-api */ @@ -29168,7 +29168,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /***/ }), -/***/ 909: +/***/ 9495: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -29197,7 +29197,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /**/ -var Buffer = __nccwpck_require__(6148).Buffer; +var Buffer = __nccwpck_require__(8275).Buffer; /**/ var isEncoding = Buffer.isEncoding || function (encoding) { @@ -29471,15 +29471,15 @@ function simpleEnd(buf) { /***/ }), -/***/ 9933: +/***/ 2508: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669) -var bl = __nccwpck_require__(244) -var headers = __nccwpck_require__(5690) +var bl = __nccwpck_require__(4396) +var headers = __nccwpck_require__(9348) -var Writable = __nccwpck_require__(2033).Writable -var PassThrough = __nccwpck_require__(2033).PassThrough +var Writable = __nccwpck_require__(7733).Writable +var PassThrough = __nccwpck_require__(7733).PassThrough var noop = function () {} @@ -29735,7 +29735,7 @@ module.exports = Extract /***/ }), -/***/ 5690: +/***/ 9348: /***/ ((__unused_webpack_module, exports) => { var alloc = Buffer.alloc @@ -30037,28 +30037,28 @@ exports.decode = function (buf, filenameEncoding, allowUnknownFormat) { /***/ }), -/***/ 9385: +/***/ 8032: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -exports.extract = __nccwpck_require__(9933) -exports.pack = __nccwpck_require__(6594) +exports.extract = __nccwpck_require__(2508) +exports.pack = __nccwpck_require__(1408) /***/ }), -/***/ 6594: +/***/ 1408: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var constants = __nccwpck_require__(8345) -var eos = __nccwpck_require__(2322) -var inherits = __nccwpck_require__(6087) +var constants = __nccwpck_require__(528) +var eos = __nccwpck_require__(3481) +var inherits = __nccwpck_require__(458) var alloc = Buffer.alloc -var Readable = __nccwpck_require__(2033).Readable -var Writable = __nccwpck_require__(2033).Writable +var Readable = __nccwpck_require__(7733).Readable +var Writable = __nccwpck_require__(7733).Writable var StringDecoder = __nccwpck_require__(4304).StringDecoder -var headers = __nccwpck_require__(5690) +var headers = __nccwpck_require__(9348) var DMODE = parseInt('755', 8) var FMODE = parseInt('644', 8) @@ -30308,7 +30308,7 @@ module.exports = Pack /***/ }), -/***/ 6442: +/***/ 6766: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -30321,7 +30321,7 @@ module.exports = __nccwpck_require__(1669).deprecate; /***/ }), -/***/ 7362: +/***/ 7868: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30385,29 +30385,29 @@ Object.defineProperty(exports, "parse", ({ } })); -var _v = _interopRequireDefault(__nccwpck_require__(930)); +var _v = _interopRequireDefault(__nccwpck_require__(1012)); -var _v2 = _interopRequireDefault(__nccwpck_require__(6634)); +var _v2 = _interopRequireDefault(__nccwpck_require__(5959)); -var _v3 = _interopRequireDefault(__nccwpck_require__(7293)); +var _v3 = _interopRequireDefault(__nccwpck_require__(7578)); -var _v4 = _interopRequireDefault(__nccwpck_require__(595)); +var _v4 = _interopRequireDefault(__nccwpck_require__(3791)); -var _nil = _interopRequireDefault(__nccwpck_require__(629)); +var _nil = _interopRequireDefault(__nccwpck_require__(7006)); -var _version = _interopRequireDefault(__nccwpck_require__(8292)); +var _version = _interopRequireDefault(__nccwpck_require__(3488)); -var _validate = _interopRequireDefault(__nccwpck_require__(1893)); +var _validate = _interopRequireDefault(__nccwpck_require__(7343)); -var _stringify = _interopRequireDefault(__nccwpck_require__(7739)); +var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); -var _parse = _interopRequireDefault(__nccwpck_require__(9928)); +var _parse = _interopRequireDefault(__nccwpck_require__(2860)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /***/ }), -/***/ 7624: +/***/ 9524: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30437,7 +30437,7 @@ exports.default = _default; /***/ }), -/***/ 629: +/***/ 7006: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -30452,7 +30452,7 @@ exports.default = _default; /***/ }), -/***/ 9928: +/***/ 2860: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30463,7 +30463,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(1893)); +var _validate = _interopRequireDefault(__nccwpck_require__(7343)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30504,7 +30504,7 @@ exports.default = _default; /***/ }), -/***/ 2117: +/***/ 788: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -30519,7 +30519,7 @@ exports.default = _default; /***/ }), -/***/ 9497: +/***/ 8702: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30550,7 +30550,7 @@ function rng() { /***/ }), -/***/ 2645: +/***/ 5472: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30580,7 +30580,7 @@ exports.default = _default; /***/ }), -/***/ 7739: +/***/ 6587: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30591,7 +30591,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(1893)); +var _validate = _interopRequireDefault(__nccwpck_require__(7343)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30626,7 +30626,7 @@ exports.default = _default; /***/ }), -/***/ 930: +/***/ 1012: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30637,9 +30637,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(9497)); +var _rng = _interopRequireDefault(__nccwpck_require__(8702)); -var _stringify = _interopRequireDefault(__nccwpck_require__(7739)); +var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30740,7 +30740,7 @@ exports.default = _default; /***/ }), -/***/ 6634: +/***/ 5959: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30751,9 +30751,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(1159)); +var _v = _interopRequireDefault(__nccwpck_require__(2717)); -var _md = _interopRequireDefault(__nccwpck_require__(7624)); +var _md = _interopRequireDefault(__nccwpck_require__(9524)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30763,7 +30763,7 @@ exports.default = _default; /***/ }), -/***/ 1159: +/***/ 2717: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30775,9 +30775,9 @@ Object.defineProperty(exports, "__esModule", ({ exports.default = _default; exports.URL = exports.DNS = void 0; -var _stringify = _interopRequireDefault(__nccwpck_require__(7739)); +var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); -var _parse = _interopRequireDefault(__nccwpck_require__(9928)); +var _parse = _interopRequireDefault(__nccwpck_require__(2860)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30848,7 +30848,7 @@ function _default(name, version, hashfunc) { /***/ }), -/***/ 7293: +/***/ 7578: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30859,9 +30859,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(9497)); +var _rng = _interopRequireDefault(__nccwpck_require__(8702)); -var _stringify = _interopRequireDefault(__nccwpck_require__(7739)); +var _stringify = _interopRequireDefault(__nccwpck_require__(6587)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30892,7 +30892,7 @@ exports.default = _default; /***/ }), -/***/ 595: +/***/ 3791: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30903,9 +30903,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(1159)); +var _v = _interopRequireDefault(__nccwpck_require__(2717)); -var _sha = _interopRequireDefault(__nccwpck_require__(2645)); +var _sha = _interopRequireDefault(__nccwpck_require__(5472)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30915,7 +30915,7 @@ exports.default = _default; /***/ }), -/***/ 1893: +/***/ 7343: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30926,7 +30926,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _regex = _interopRequireDefault(__nccwpck_require__(2117)); +var _regex = _interopRequireDefault(__nccwpck_require__(788)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30939,7 +30939,7 @@ exports.default = _default; /***/ }), -/***/ 8292: +/***/ 3488: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -30950,7 +30950,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports.default = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(1893)); +var _validate = _interopRequireDefault(__nccwpck_require__(7343)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -30967,7 +30967,7 @@ exports.default = _default; /***/ }), -/***/ 9595: +/***/ 8928: /***/ ((module) => { // Returns a wrapper function that returns a wrapped callback @@ -31007,7 +31007,7 @@ function wrappy (fn, cb) { /***/ }), -/***/ 548: +/***/ 223: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -31019,10 +31019,10 @@ function wrappy (fn, cb) { */ var inherits = __nccwpck_require__(1669).inherits; -var ZipArchiveOutputStream = __nccwpck_require__(9044).ZipArchiveOutputStream; -var ZipArchiveEntry = __nccwpck_require__(9044).ZipArchiveEntry; +var ZipArchiveOutputStream = __nccwpck_require__(187).ZipArchiveOutputStream; +var ZipArchiveEntry = __nccwpck_require__(187).ZipArchiveEntry; -var util = __nccwpck_require__(7127); +var util = __nccwpck_require__(4734); /** * @constructor @@ -31201,7 +31201,7 @@ ZipStream.prototype.finalize = function() { /***/ }), -/***/ 983: +/***/ 3347: /***/ ((module) => { module.exports = eval("require")("encoding"); @@ -31372,8 +31372,8 @@ var __webpack_exports__ = {}; var exports = __webpack_exports__; Object.defineProperty(exports, "__esModule", ({ value: true })); -const Inputs_1 = __nccwpck_require__(3421); -const NextcloudArtifact_1 = __nccwpck_require__(1634); +const Inputs_1 = __nccwpck_require__(9574); +const NextcloudArtifact_1 = __nccwpck_require__(8730); 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 6996bd9..eca9fec 100644 --- a/src/nextcloud/NextcloudClient.ts +++ b/src/nextcloud/NextcloudClient.ts @@ -105,7 +105,7 @@ export class NextcloudClient { private async zipFiles(specs: FileSpec[]): Promise { const tempArtifactDir = path.join(os.tmpdir(), this.guid); const artifactPath = path.join(tempArtifactDir, `artifact-${this.artifact}`); - await fs.mkdir(artifactPath, { recursive: true }); + await fs.mkdir(path.join(artifactPath, this.artifact), { recursive: true }); for (let spec of specs) { await fs.copyFile(spec.absolutePath, path.join(artifactPath, spec.uploadPath)); }