diff --git a/dist/index.js b/dist/index.js index 6c4a6fd..4b5d17e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 7419: +/***/ 3363: /***/ (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__(4234)); +const glob = __importStar(__nccwpck_require__(1133)); const fs_1 = __nccwpck_require__(5747); -const core_1 = __nccwpck_require__(5154); +const core_1 = __nccwpck_require__(9747); 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 = { /***/ }), -/***/ 9338: +/***/ 8458: /***/ (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__(5154)); -const NoFileOption_1 = __nccwpck_require__(2797); +const core = __importStar(__nccwpck_require__(9747)); +const NoFileOption_1 = __nccwpck_require__(8513); class Inputs { static get ArtifactName() { return core.getInput("name"); @@ -220,7 +220,7 @@ exports.Inputs = Inputs; /***/ }), -/***/ 2797: +/***/ 8513: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -246,7 +246,7 @@ var NoFileOption; /***/ }), -/***/ 8891: +/***/ 2409: /***/ (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__(5154)); -const FileFinder_1 = __nccwpck_require__(7419); -const Inputs_1 = __nccwpck_require__(9338); -const NextcloudClient_1 = __nccwpck_require__(6253); -const NoFileOption_1 = __nccwpck_require__(2797); +const core = __importStar(__nccwpck_require__(9747)); +const FileFinder_1 = __nccwpck_require__(3363); +const Inputs_1 = __nccwpck_require__(8458); +const NextcloudClient_1 = __nccwpck_require__(5524); +const NoFileOption_1 = __nccwpck_require__(8513); class NextcloudArtifact { constructor(name, path, errorBehavior) { this.name = name; @@ -342,7 +342,7 @@ exports.NextcloudArtifact = NextcloudArtifact; /***/ }), -/***/ 6253: +/***/ 5524: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -382,20 +382,20 @@ 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__(5154)); +const core = __importStar(__nccwpck_require__(9747)); const os = __importStar(__nccwpck_require__(2087)); -const crypto_1 = __nccwpck_require__(6417); -const archiver = __importStar(__nccwpck_require__(5461)); -const node_fetch_1 = __importDefault(__nccwpck_require__(9864)); -const Inputs_1 = __nccwpck_require__(9338); -const btoa_1 = __importDefault(__nccwpck_require__(1920)); +const crypto = __importStar(__nccwpck_require__(6417)); +const archiver = __importStar(__nccwpck_require__(1885)); +const node_fetch_1 = __importDefault(__nccwpck_require__(7738)); +const Inputs_1 = __nccwpck_require__(8458); +const btoa_1 = __importDefault(__nccwpck_require__(5229)); const fs = fsSync.promises; class NextcloudClient { constructor(endpoint, artifact, rootDirectory) { this.endpoint = endpoint; this.artifact = artifact; this.rootDirectory = rootDirectory; - this.guid = crypto_1.randomUUID(); + this.guid = crypto.randomUUID(); this.headers = { 'Authorization': 'Basic ' + btoa_1.default(`${Inputs_1.Inputs.Username}:${Inputs_1.Inputs.Password}`) }; } uploadFiles(files) { @@ -532,7 +532,7 @@ exports.NextcloudClient = NextcloudClient; /***/ }), -/***/ 8388: +/***/ 1617: /***/ (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__(3925); +const utils_1 = __nccwpck_require__(1650); /** * Commands * @@ -631,7 +631,7 @@ function escapeProperty(s) { /***/ }), -/***/ 5154: +/***/ 9747: /***/ (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__(8388); -const file_command_1 = __nccwpck_require__(4208); -const utils_1 = __nccwpck_require__(3925); +const command_1 = __nccwpck_require__(1617); +const file_command_1 = __nccwpck_require__(6869); +const utils_1 = __nccwpck_require__(1650); const os = __importStar(__nccwpck_require__(2087)); const path = __importStar(__nccwpck_require__(5622)); /** @@ -917,7 +917,7 @@ exports.getState = getState; /***/ }), -/***/ 4208: +/***/ 6869: /***/ (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__(3925); +const utils_1 = __nccwpck_require__(1650); function issueCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { @@ -966,7 +966,7 @@ exports.issueCommand = issueCommand; /***/ }), -/***/ 3925: +/***/ 1650: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -993,7 +993,7 @@ exports.toCommandValue = toCommandValue; /***/ }), -/***/ 4234: +/***/ 1133: /***/ (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__(9106); +const internal_globber_1 = __nccwpck_require__(1197); /** * Constructs a globber * @@ -1026,7 +1026,7 @@ exports.create = create; /***/ }), -/***/ 5667: +/***/ 7891: /***/ (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__(5154)); +const core = __importStar(__nccwpck_require__(9747)); /** * Returns a copy with defaults filled in. */ @@ -1083,7 +1083,7 @@ exports.getOptions = getOptions; /***/ }), -/***/ 9106: +/***/ 1197: /***/ (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__(5154)); +const core = __importStar(__nccwpck_require__(9747)); const fs = __importStar(__nccwpck_require__(5747)); -const globOptionsHelper = __importStar(__nccwpck_require__(5667)); +const globOptionsHelper = __importStar(__nccwpck_require__(7891)); const path = __importStar(__nccwpck_require__(5622)); -const patternHelper = __importStar(__nccwpck_require__(5844)); -const internal_match_kind_1 = __nccwpck_require__(5697); -const internal_pattern_1 = __nccwpck_require__(3064); -const internal_search_state_1 = __nccwpck_require__(8699); +const patternHelper = __importStar(__nccwpck_require__(9053)); +const internal_match_kind_1 = __nccwpck_require__(3329); +const internal_pattern_1 = __nccwpck_require__(6220); +const internal_search_state_1 = __nccwpck_require__(5228); const IS_WINDOWS = process.platform === 'win32'; class DefaultGlobber { constructor(options) { @@ -1325,7 +1325,7 @@ exports.DefaultGlobber = DefaultGlobber; /***/ }), -/***/ 5697: +/***/ 3329: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -1350,7 +1350,7 @@ var MatchKind; /***/ }), -/***/ 4914: +/***/ 6841: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1555,7 +1555,7 @@ exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; /***/ }), -/***/ 9300: +/***/ 7954: /***/ (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__(4914)); +const pathHelper = __importStar(__nccwpck_require__(6841)); const assert_1 = __importDefault(__nccwpck_require__(2357)); const IS_WINDOWS = process.platform === 'win32'; /** @@ -1675,7 +1675,7 @@ exports.Path = Path; /***/ }), -/***/ 5844: +/***/ 9053: /***/ (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__(4914)); -const internal_match_kind_1 = __nccwpck_require__(5697); +const pathHelper = __importStar(__nccwpck_require__(6841)); +const internal_match_kind_1 = __nccwpck_require__(3329); 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; /***/ }), -/***/ 3064: +/***/ 6220: /***/ (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__(4914)); +const pathHelper = __importStar(__nccwpck_require__(6841)); const assert_1 = __importDefault(__nccwpck_require__(2357)); -const minimatch_1 = __nccwpck_require__(1587); -const internal_match_kind_1 = __nccwpck_require__(5697); -const internal_path_1 = __nccwpck_require__(9300); +const minimatch_1 = __nccwpck_require__(3032); +const internal_match_kind_1 = __nccwpck_require__(3329); +const internal_path_1 = __nccwpck_require__(7954); const IS_WINDOWS = process.platform === 'win32'; class Pattern { constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) { @@ -2038,7 +2038,7 @@ exports.Pattern = Pattern; /***/ }), -/***/ 8699: +/***/ 5228: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2056,7 +2056,7 @@ exports.SearchState = SearchState; /***/ }), -/***/ 7362: +/***/ 3332: /***/ ((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__(4048); +var fs = __nccwpck_require__(1781); var path = __nccwpck_require__(5622); -var flatten = __nccwpck_require__(8640); -var difference = __nccwpck_require__(840); -var union = __nccwpck_require__(7386); -var isPlainObject = __nccwpck_require__(2136); +var flatten = __nccwpck_require__(5569); +var difference = __nccwpck_require__(232); +var union = __nccwpck_require__(938); +var isPlainObject = __nccwpck_require__(5495); -var glob = __nccwpck_require__(2250); +var glob = __nccwpck_require__(4545); var file = module.exports = {}; @@ -2272,7 +2272,7 @@ file.normalizeFilesArray = function(data) { /***/ }), -/***/ 6383: +/***/ 4699: /***/ ((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__(4048); +var fs = __nccwpck_require__(1781); var path = __nccwpck_require__(5622); var nutil = __nccwpck_require__(1669); -var lazystream = __nccwpck_require__(3215); -var normalizePath = __nccwpck_require__(9688); -var defaults = __nccwpck_require__(1849); +var lazystream = __nccwpck_require__(3772); +var normalizePath = __nccwpck_require__(8296); +var defaults = __nccwpck_require__(2122); var Stream = __nccwpck_require__(2413).Stream; -var PassThrough = __nccwpck_require__(1356).PassThrough; +var PassThrough = __nccwpck_require__(4989).PassThrough; var utils = module.exports = {}; -utils.file = __nccwpck_require__(7362); +utils.file = __nccwpck_require__(3332); function assertPath(path) { if (typeof path !== 'string') { @@ -2435,7 +2435,7 @@ utils.walkdir = function(dirpath, base, callback) { /***/ }), -/***/ 9991: +/***/ 7161: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2469,7 +2469,7 @@ utils.walkdir = function(dirpath, base, callback) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ /**/ @@ -2484,12 +2484,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ -var Readable = __nccwpck_require__(9664); -var Writable = __nccwpck_require__(8077); +var Readable = __nccwpck_require__(7938); +var Writable = __nccwpck_require__(3625); util.inherits(Duplex, Readable); @@ -2573,7 +2573,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 6111: +/***/ 9389: /***/ ((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__(9606); +var Transform = __nccwpck_require__(2662); /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ util.inherits(PassThrough, Transform); @@ -2627,7 +2627,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 9664: +/***/ 7938: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -2656,13 +2656,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(1320); +var isArray = __nccwpck_require__(6723); /**/ /**/ @@ -2680,12 +2680,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(5166); +var Stream = __nccwpck_require__(3842); /**/ /**/ -var Buffer = __nccwpck_require__(5519).Buffer; +var Buffer = __nccwpck_require__(475).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__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ /**/ @@ -2711,8 +2711,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(387); -var destroyImpl = __nccwpck_require__(8679); +var BufferList = __nccwpck_require__(6242); +var destroyImpl = __nccwpck_require__(6644); var StringDecoder; util.inherits(Readable, Stream); @@ -2732,7 +2732,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(9991); + Duplex = Duplex || __nccwpck_require__(7161); options = options || {}; @@ -2802,14 +2802,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(3571)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(4446)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(9991); + Duplex = Duplex || __nccwpck_require__(7161); 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__(3571)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(4446)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -3653,7 +3653,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 9606: +/***/ 2662: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3724,11 +3724,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(9991); +var Duplex = __nccwpck_require__(7161); /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ util.inherits(Transform, Duplex); @@ -3874,7 +3874,7 @@ function done(stream, er, data) { /***/ }), -/***/ 8077: +/***/ 3625: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -3907,7 +3907,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ module.exports = Writable; @@ -3944,23 +3944,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(9451) + deprecate: __nccwpck_require__(6467) }; /**/ /**/ -var Stream = __nccwpck_require__(5166); +var Stream = __nccwpck_require__(3842); /**/ /**/ -var Buffer = __nccwpck_require__(5519).Buffer; +var Buffer = __nccwpck_require__(475).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -3971,14 +3971,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(8679); +var destroyImpl = __nccwpck_require__(6644); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(9991); + Duplex = Duplex || __nccwpck_require__(7161); options = options || {}; @@ -4128,7 +4128,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(9991); + Duplex = Duplex || __nccwpck_require__(7161); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -4568,7 +4568,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 387: +/***/ 6242: /***/ ((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__(5519).Buffer; +var Buffer = __nccwpck_require__(475).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -4654,7 +4654,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 8679: +/***/ 6644: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -4662,7 +4662,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ // undocumented cb() API, needed for core, not for public API @@ -4735,7 +4735,7 @@ module.exports = { /***/ }), -/***/ 5166: +/***/ 3842: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -4743,7 +4743,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 1356: +/***/ 4989: /***/ ((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__(9664); + exports = module.exports = __nccwpck_require__(7938); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(8077); - exports.Duplex = __nccwpck_require__(9991); - exports.Transform = __nccwpck_require__(9606); - exports.PassThrough = __nccwpck_require__(6111); + exports.Writable = __nccwpck_require__(3625); + exports.Duplex = __nccwpck_require__(7161); + exports.Transform = __nccwpck_require__(2662); + exports.PassThrough = __nccwpck_require__(9389); } /***/ }), -/***/ 5461: +/***/ 1885: /***/ ((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__(4499); +var Archiver = __nccwpck_require__(1903); var formats = {}; @@ -4851,15 +4851,15 @@ vending.isRegisteredFormat = function (format) { return false; }; -vending.registerFormat('zip', __nccwpck_require__(773)); -vending.registerFormat('tar', __nccwpck_require__(4038)); -vending.registerFormat('json', __nccwpck_require__(4311)); +vending.registerFormat('zip', __nccwpck_require__(37)); +vending.registerFormat('tar', __nccwpck_require__(7915)); +vending.registerFormat('json', __nccwpck_require__(685)); module.exports = vending; /***/ }), -/***/ 4499: +/***/ 1903: /***/ ((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__(6780); -var async = __nccwpck_require__(8937); +var glob = __nccwpck_require__(4465); +var async = __nccwpck_require__(5660); var path = __nccwpck_require__(5622); -var util = __nccwpck_require__(6383); +var util = __nccwpck_require__(4699); var inherits = __nccwpck_require__(1669).inherits; -var ArchiverError = __nccwpck_require__(5149); -var Transform = __nccwpck_require__(1671).Transform; +var ArchiverError = __nccwpck_require__(3445); +var Transform = __nccwpck_require__(7425).Transform; var win32 = process.platform === 'win32'; @@ -5840,7 +5840,7 @@ module.exports = Archiver; /***/ }), -/***/ 5149: +/***/ 3445: /***/ ((module, exports, __nccwpck_require__) => { /** @@ -5886,7 +5886,7 @@ exports = module.exports = ArchiverError; /***/ }), -/***/ 4311: +/***/ 685: /***/ ((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__(1671).Transform; +var Transform = __nccwpck_require__(7425).Transform; -var crc32 = __nccwpck_require__(6577); -var util = __nccwpck_require__(6383); +var crc32 = __nccwpck_require__(1509); +var util = __nccwpck_require__(4699); /** * @constructor @@ -6003,7 +6003,7 @@ module.exports = Json; /***/ }), -/***/ 4038: +/***/ 7915: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -6015,8 +6015,8 @@ module.exports = Json; */ var zlib = __nccwpck_require__(8761); -var engine = __nccwpck_require__(7175); -var util = __nccwpck_require__(6383); +var engine = __nccwpck_require__(3377); +var util = __nccwpck_require__(4699); /** * @constructor @@ -6177,7 +6177,7 @@ module.exports = Tar; /***/ }), -/***/ 773: +/***/ 37: /***/ ((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__(9448); -var util = __nccwpck_require__(6383); +var engine = __nccwpck_require__(7645); +var util = __nccwpck_require__(4699); /** * @constructor @@ -6304,7 +6304,7 @@ module.exports = Zip; /***/ }), -/***/ 8937: +/***/ 5660: /***/ (function(__unused_webpack_module, exports) { (function (global, factory) { @@ -11156,7 +11156,7 @@ module.exports = Zip; /***/ }), -/***/ 4558: +/***/ 321: /***/ ((module) => { "use strict"; @@ -11226,7 +11226,7 @@ function range(a, b, str) { /***/ }), -/***/ 4721: +/***/ 2045: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -11630,15 +11630,15 @@ module.exports = BufferList /***/ }), -/***/ 5499: +/***/ 6888: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const DuplexStream = __nccwpck_require__(1671).Duplex -const inherits = __nccwpck_require__(3023) -const BufferList = __nccwpck_require__(4721) +const DuplexStream = __nccwpck_require__(7425).Duplex +const inherits = __nccwpck_require__(468) +const BufferList = __nccwpck_require__(2045) function BufferListStream (callback) { if (!(this instanceof BufferListStream)) { @@ -11722,11 +11722,11 @@ module.exports.BufferList = BufferList /***/ }), -/***/ 2500: +/***/ 1059: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var concatMap = __nccwpck_require__(4504); -var balanced = __nccwpck_require__(4558); +var concatMap = __nccwpck_require__(5941); +var balanced = __nccwpck_require__(321); module.exports = expandTop; @@ -11930,7 +11930,7 @@ function expand(str, isTop) { /***/ }), -/***/ 1920: +/***/ 5229: /***/ ((module) => { (function () { @@ -11954,7 +11954,7 @@ function expand(str, isTop) { /***/ }), -/***/ 6577: +/***/ 1509: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Buffer = __nccwpck_require__(4293).Buffer; @@ -12072,7 +12072,7 @@ module.exports = crc32; /***/ }), -/***/ 6276: +/***/ 8669: /***/ ((module) => { /** @@ -12094,7 +12094,7 @@ ArchiveEntry.prototype.isDirectory = function() {}; /***/ }), -/***/ 9103: +/***/ 1186: /***/ ((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__(1671).Transform; +var Transform = __nccwpck_require__(7425).Transform; -var ArchiveEntry = __nccwpck_require__(6276); -var util = __nccwpck_require__(3592); +var ArchiveEntry = __nccwpck_require__(8669); +var util = __nccwpck_require__(6862); var ArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ArchiveOutputStream)) { @@ -12217,7 +12217,7 @@ ArchiveOutputStream.prototype.write = function(chunk, cb) { /***/ }), -/***/ 2624: +/***/ 8152: /***/ ((module) => { /** @@ -12295,7 +12295,7 @@ module.exports = { /***/ }), -/***/ 2837: +/***/ 8564: /***/ ((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__(4678); +var zipUtil = __nccwpck_require__(2935); var DATA_DESCRIPTOR_FLAG = 1 << 3; var ENCRYPTION_FLAG = 1 << 0; @@ -12402,7 +12402,7 @@ GeneralPurposeBit.prototype.usesUTF8ForNames = function() { /***/ }), -/***/ 2930: +/***/ 9433: /***/ ((module) => { /** @@ -12461,7 +12461,7 @@ module.exports = { /***/ }), -/***/ 4678: +/***/ 2935: /***/ ((module) => { /** @@ -12541,7 +12541,7 @@ util.toDosTime = function(d) { /***/ }), -/***/ 629: +/***/ 6730: /***/ ((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__(9688); +var normalizePath = __nccwpck_require__(8296); -var ArchiveEntry = __nccwpck_require__(6276); -var GeneralPurposeBit = __nccwpck_require__(2837); -var UnixStat = __nccwpck_require__(2930); +var ArchiveEntry = __nccwpck_require__(8669); +var GeneralPurposeBit = __nccwpck_require__(8564); +var UnixStat = __nccwpck_require__(9433); -var constants = __nccwpck_require__(2624); -var zipUtil = __nccwpck_require__(4678); +var constants = __nccwpck_require__(8152); +var zipUtil = __nccwpck_require__(2935); var ZipArchiveEntry = module.exports = function(name) { if (!(this instanceof ZipArchiveEntry)) { @@ -12961,7 +12961,7 @@ ZipArchiveEntry.prototype.isZip64 = function() { /***/ }), -/***/ 2215: +/***/ 4136: /***/ ((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__(6577); -var {CRC32Stream} = __nccwpck_require__(8055); -var {DeflateCRC32Stream} = __nccwpck_require__(8055); +var crc32 = __nccwpck_require__(1509); +var {CRC32Stream} = __nccwpck_require__(7472); +var {DeflateCRC32Stream} = __nccwpck_require__(7472); -var ArchiveOutputStream = __nccwpck_require__(9103); -var ZipArchiveEntry = __nccwpck_require__(629); -var GeneralPurposeBit = __nccwpck_require__(2837); +var ArchiveOutputStream = __nccwpck_require__(1186); +var ZipArchiveEntry = __nccwpck_require__(6730); +var GeneralPurposeBit = __nccwpck_require__(8564); -var constants = __nccwpck_require__(2624); -var util = __nccwpck_require__(3592); -var zipUtil = __nccwpck_require__(4678); +var constants = __nccwpck_require__(8152); +var util = __nccwpck_require__(6862); +var zipUtil = __nccwpck_require__(2935); var ZipArchiveOutputStream = module.exports = function(options) { if (!(this instanceof ZipArchiveOutputStream)) { @@ -13408,7 +13408,7 @@ ZipArchiveOutputStream.prototype.setComment = function(comment) { /***/ }), -/***/ 3169: +/***/ 3541: /***/ ((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__(6276), - ZipArchiveEntry: __nccwpck_require__(629), - ArchiveOutputStream: __nccwpck_require__(9103), - ZipArchiveOutputStream: __nccwpck_require__(2215) + ArchiveEntry: __nccwpck_require__(8669), + ZipArchiveEntry: __nccwpck_require__(6730), + ArchiveOutputStream: __nccwpck_require__(1186), + ZipArchiveOutputStream: __nccwpck_require__(4136) }; /***/ }), -/***/ 3592: +/***/ 6862: /***/ ((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__(1671).PassThrough; +var PassThrough = __nccwpck_require__(7425).PassThrough; var util = module.exports = {}; @@ -13463,7 +13463,7 @@ util.normalizeInputSource = function(source) { /***/ }), -/***/ 4504: +/***/ 5941: /***/ ((module) => { module.exports = function (xs, fn) { @@ -13483,7 +13483,7 @@ var isArray = Array.isArray || function (xs) { /***/ }), -/***/ 5115: +/***/ 1409: /***/ ((__unused_webpack_module, exports) => { // Copyright Joyent, Inc. and other Node contributors. @@ -13597,7 +13597,7 @@ function objectToString(o) { /***/ }), -/***/ 4798: +/***/ 4786: /***/ ((__unused_webpack_module, exports) => { /* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */ @@ -13714,7 +13714,7 @@ CRC32.str = crc32_str; /***/ }), -/***/ 2974: +/***/ 6525: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13728,9 +13728,9 @@ CRC32.str = crc32_str; -const {Transform} = __nccwpck_require__(1671); +const {Transform} = __nccwpck_require__(7425); -const crc32 = __nccwpck_require__(4798); +const crc32 = __nccwpck_require__(4786); class CRC32Stream extends Transform { constructor(options) { @@ -13770,7 +13770,7 @@ module.exports = CRC32Stream; /***/ }), -/***/ 8971: +/***/ 4566: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13786,7 +13786,7 @@ module.exports = CRC32Stream; const {DeflateRaw} = __nccwpck_require__(8761); -const crc32 = __nccwpck_require__(4798); +const crc32 = __nccwpck_require__(4786); class DeflateCRC32Stream extends DeflateRaw { constructor(options) { @@ -13840,7 +13840,7 @@ module.exports = DeflateCRC32Stream; /***/ }), -/***/ 8055: +/***/ 7472: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -13855,17 +13855,17 @@ module.exports = DeflateCRC32Stream; module.exports = { - CRC32Stream: __nccwpck_require__(2974), - DeflateCRC32Stream: __nccwpck_require__(8971) + CRC32Stream: __nccwpck_require__(6525), + DeflateCRC32Stream: __nccwpck_require__(4566) } /***/ }), -/***/ 8637: +/***/ 2904: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var once = __nccwpck_require__(7787); +var once = __nccwpck_require__(2009); var noop = function() {}; @@ -13963,7 +13963,7 @@ module.exports = eos; /***/ }), -/***/ 4744: +/***/ 116: /***/ ((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 /***/ }), -/***/ 6622: +/***/ 5789: /***/ ((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__(9506) +var old = __nccwpck_require__(5608) function newError (er) { return er && er.syscall === 'realpath' && ( @@ -14044,7 +14044,7 @@ function unmonkeypatch () { /***/ }), -/***/ 9506: +/***/ 5608: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { // Copyright Joyent, Inc. and other Node contributors. @@ -14354,7 +14354,7 @@ exports.realpath = function realpath(p, cache, cb) { /***/ }), -/***/ 7540: +/***/ 5461: /***/ ((__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__(1587) -var isAbsolute = __nccwpck_require__(9832) +var minimatch = __nccwpck_require__(3032) +var isAbsolute = __nccwpck_require__(5026) var Minimatch = minimatch.Minimatch function alphasort (a, b) { @@ -14595,7 +14595,7 @@ function childrenIgnored (self, path) { /***/ }), -/***/ 2250: +/***/ 4545: /***/ ((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__(6622) -var minimatch = __nccwpck_require__(1587) +var rp = __nccwpck_require__(5789) +var minimatch = __nccwpck_require__(3032) var Minimatch = minimatch.Minimatch -var inherits = __nccwpck_require__(3023) +var inherits = __nccwpck_require__(468) var EE = __nccwpck_require__(8614).EventEmitter var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(9832) -var globSync = __nccwpck_require__(7596) -var common = __nccwpck_require__(7540) +var isAbsolute = __nccwpck_require__(5026) +var globSync = __nccwpck_require__(1749) +var common = __nccwpck_require__(5461) var setopts = common.setopts var ownProp = common.ownProp -var inflight = __nccwpck_require__(7730) +var inflight = __nccwpck_require__(734) var util = __nccwpck_require__(1669) var childrenIgnored = common.childrenIgnored var isIgnored = common.isIgnored -var once = __nccwpck_require__(7787) +var once = __nccwpck_require__(2009) 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) { /***/ }), -/***/ 7596: +/***/ 1749: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = globSync globSync.GlobSync = GlobSync var fs = __nccwpck_require__(5747) -var rp = __nccwpck_require__(6622) -var minimatch = __nccwpck_require__(1587) +var rp = __nccwpck_require__(5789) +var minimatch = __nccwpck_require__(3032) var Minimatch = minimatch.Minimatch -var Glob = __nccwpck_require__(2250).Glob +var Glob = __nccwpck_require__(4545).Glob var util = __nccwpck_require__(1669) var path = __nccwpck_require__(5622) var assert = __nccwpck_require__(2357) -var isAbsolute = __nccwpck_require__(9832) -var common = __nccwpck_require__(7540) +var isAbsolute = __nccwpck_require__(5026) +var common = __nccwpck_require__(5461) var setopts = common.setopts var ownProp = common.ownProp var childrenIgnored = common.childrenIgnored @@ -15881,7 +15881,7 @@ GlobSync.prototype._makeAbs = function (f) { /***/ }), -/***/ 7274: +/***/ 5361: /***/ ((module) => { "use strict"; @@ -15912,13 +15912,13 @@ function clone (obj) { /***/ }), -/***/ 4048: +/***/ 1781: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var fs = __nccwpck_require__(5747) -var polyfills = __nccwpck_require__(156) -var legacy = __nccwpck_require__(4245) -var clone = __nccwpck_require__(7274) +var polyfills = __nccwpck_require__(6096) +var legacy = __nccwpck_require__(2266) +var clone = __nccwpck_require__(5361) var util = __nccwpck_require__(1669) @@ -16292,7 +16292,7 @@ function retry () { /***/ }), -/***/ 4245: +/***/ 2266: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var Stream = __nccwpck_require__(2413).Stream @@ -16417,7 +16417,7 @@ function legacy (fs) { /***/ }), -/***/ 156: +/***/ 6096: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var constants = __nccwpck_require__(7619) @@ -16770,12 +16770,12 @@ function patch (fs) { /***/ }), -/***/ 7730: +/***/ 734: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(9242) +var wrappy = __nccwpck_require__(9222) var reqs = Object.create(null) -var once = __nccwpck_require__(7787) +var once = __nccwpck_require__(2009) module.exports = wrappy(inflight) @@ -16831,7 +16831,7 @@ function slice (args) { /***/ }), -/***/ 3023: +/***/ 468: /***/ ((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__(1523); + module.exports = __nccwpck_require__(5311); } /***/ }), -/***/ 1523: +/***/ 5311: /***/ ((module) => { if (typeof Object.create === 'function') { @@ -16881,7 +16881,7 @@ if (typeof Object.create === 'function') { /***/ }), -/***/ 1320: +/***/ 6723: /***/ ((module) => { var toString = {}.toString; @@ -16893,11 +16893,11 @@ module.exports = Array.isArray || function (arr) { /***/ }), -/***/ 3215: +/***/ 3772: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669); -var PassThrough = __nccwpck_require__(2965); +var PassThrough = __nccwpck_require__(8908); module.exports = { Readable: Readable, @@ -16954,7 +16954,7 @@ function Writable(fn, options) { /***/ }), -/***/ 7669: +/***/ 5794: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -16988,7 +16988,7 @@ function Writable(fn, options) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ /**/ @@ -17003,12 +17003,12 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ -var Readable = __nccwpck_require__(5442); -var Writable = __nccwpck_require__(3824); +var Readable = __nccwpck_require__(4964); +var Writable = __nccwpck_require__(1189); util.inherits(Duplex, Readable); @@ -17092,7 +17092,7 @@ Duplex.prototype._destroy = function (err, cb) { /***/ }), -/***/ 9607: +/***/ 9933: /***/ ((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__(8782); +var Transform = __nccwpck_require__(3212); /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ util.inherits(PassThrough, Transform); @@ -17146,7 +17146,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 5442: +/***/ 4964: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17175,13 +17175,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ module.exports = Readable; /**/ -var isArray = __nccwpck_require__(1320); +var isArray = __nccwpck_require__(6723); /**/ /**/ @@ -17199,12 +17199,12 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream = __nccwpck_require__(7043); +var Stream = __nccwpck_require__(4878); /**/ /**/ -var Buffer = __nccwpck_require__(5519).Buffer; +var Buffer = __nccwpck_require__(475).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__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ /**/ @@ -17230,8 +17230,8 @@ if (debugUtil && debugUtil.debuglog) { } /**/ -var BufferList = __nccwpck_require__(9063); -var destroyImpl = __nccwpck_require__(2398); +var BufferList = __nccwpck_require__(4973); +var destroyImpl = __nccwpck_require__(3168); var StringDecoder; util.inherits(Readable, Stream); @@ -17251,7 +17251,7 @@ function prependListener(emitter, event, fn) { } function ReadableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(7669); + Duplex = Duplex || __nccwpck_require__(5794); options = options || {}; @@ -17321,14 +17321,14 @@ function ReadableState(options, stream) { this.decoder = null; this.encoding = null; if (options.encoding) { - if (!StringDecoder) StringDecoder = __nccwpck_require__(3571)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(4446)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(7669); + Duplex = Duplex || __nccwpck_require__(5794); 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__(3571)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(4446)/* .StringDecoder */ .s; this._readableState.decoder = new StringDecoder(enc); this._readableState.encoding = enc; return this; @@ -18172,7 +18172,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 8782: +/***/ 3212: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18243,11 +18243,11 @@ function indexOf(xs, x) { module.exports = Transform; -var Duplex = __nccwpck_require__(7669); +var Duplex = __nccwpck_require__(5794); /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ util.inherits(Transform, Duplex); @@ -18393,7 +18393,7 @@ function done(stream, er, data) { /***/ }), -/***/ 3824: +/***/ 1189: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -18426,7 +18426,7 @@ function done(stream, er, data) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ module.exports = Writable; @@ -18463,23 +18463,23 @@ var Duplex; Writable.WritableState = WritableState; /**/ -var util = Object.create(__nccwpck_require__(5115)); -util.inherits = __nccwpck_require__(3023); +var util = Object.create(__nccwpck_require__(1409)); +util.inherits = __nccwpck_require__(468); /**/ /**/ var internalUtil = { - deprecate: __nccwpck_require__(9451) + deprecate: __nccwpck_require__(6467) }; /**/ /**/ -var Stream = __nccwpck_require__(7043); +var Stream = __nccwpck_require__(4878); /**/ /**/ -var Buffer = __nccwpck_require__(5519).Buffer; +var Buffer = __nccwpck_require__(475).Buffer; var OurUint8Array = global.Uint8Array || function () {}; function _uint8ArrayToBuffer(chunk) { return Buffer.from(chunk); @@ -18490,14 +18490,14 @@ function _isUint8Array(obj) { /**/ -var destroyImpl = __nccwpck_require__(2398); +var destroyImpl = __nccwpck_require__(3168); util.inherits(Writable, Stream); function nop() {} function WritableState(options, stream) { - Duplex = Duplex || __nccwpck_require__(7669); + Duplex = Duplex || __nccwpck_require__(5794); options = options || {}; @@ -18647,7 +18647,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot } function Writable(options) { - Duplex = Duplex || __nccwpck_require__(7669); + Duplex = Duplex || __nccwpck_require__(5794); // Writable ctor is applied to Duplexes, too. // `realHasInstance` is necessary because using plain `instanceof` @@ -19087,7 +19087,7 @@ Writable.prototype._destroy = function (err, cb) { /***/ }), -/***/ 9063: +/***/ 4973: /***/ ((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__(5519).Buffer; +var Buffer = __nccwpck_require__(475).Buffer; var util = __nccwpck_require__(1669); function copyBuffer(src, target, offset) { @@ -19173,7 +19173,7 @@ if (util && util.inspect && util.inspect.custom) { /***/ }), -/***/ 2398: +/***/ 3168: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -19181,7 +19181,7 @@ if (util && util.inspect && util.inspect.custom) { /**/ -var pna = __nccwpck_require__(4442); +var pna = __nccwpck_require__(5715); /**/ // undocumented cb() API, needed for core, not for public API @@ -19254,7 +19254,7 @@ module.exports = { /***/ }), -/***/ 7043: +/***/ 4878: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -19262,15 +19262,15 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 2965: +/***/ 8908: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(6329).PassThrough +module.exports = __nccwpck_require__(2372).PassThrough /***/ }), -/***/ 6329: +/***/ 2372: /***/ ((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__(5442); + exports = module.exports = __nccwpck_require__(4964); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(3824); - exports.Duplex = __nccwpck_require__(7669); - exports.Transform = __nccwpck_require__(8782); - exports.PassThrough = __nccwpck_require__(9607); + exports.Writable = __nccwpck_require__(1189); + exports.Duplex = __nccwpck_require__(5794); + exports.Transform = __nccwpck_require__(3212); + exports.PassThrough = __nccwpck_require__(9933); } /***/ }), -/***/ 1849: +/***/ 2122: /***/ ((module) => { /** @@ -19971,7 +19971,7 @@ module.exports = defaults; /***/ }), -/***/ 840: +/***/ 232: /***/ ((module) => { /** @@ -21148,7 +21148,7 @@ module.exports = difference; /***/ }), -/***/ 8640: +/***/ 5569: /***/ ((module) => { /** @@ -21504,7 +21504,7 @@ module.exports = flatten; /***/ }), -/***/ 2136: +/***/ 5495: /***/ ((module) => { /** @@ -21650,7 +21650,7 @@ module.exports = isPlainObject; /***/ }), -/***/ 7386: +/***/ 938: /***/ ((module) => { /** @@ -22838,7 +22838,7 @@ module.exports = union; /***/ }), -/***/ 1587: +/***/ 3032: /***/ ((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__(2500) +var expand = __nccwpck_require__(1059) var plTypes = { '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, @@ -23768,7 +23768,7 @@ function regExpEscape (s) { /***/ }), -/***/ 9864: +/***/ 7738: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; @@ -23933,7 +23933,7 @@ FetchError.prototype.name = 'FetchError'; let convert; try { - convert = __nccwpck_require__(1801).convert; + convert = __nccwpck_require__(9539).convert; } catch (e) {} const INTERNALS = Symbol('Body internals'); @@ -25425,7 +25425,7 @@ exports.FetchError = FetchError; /***/ }), -/***/ 9688: +/***/ 8296: /***/ ((module) => { /*! @@ -25467,10 +25467,10 @@ module.exports = function(path, stripTrailing) { /***/ }), -/***/ 7787: +/***/ 2009: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(9242) +var wrappy = __nccwpck_require__(9222) module.exports = wrappy(once) module.exports.strict = wrappy(onceStrict) @@ -25516,7 +25516,7 @@ function onceStrict (fn) { /***/ }), -/***/ 9832: +/***/ 5026: /***/ ((module) => { "use strict"; @@ -25544,7 +25544,7 @@ module.exports.win32 = win32; /***/ }), -/***/ 4442: +/***/ 5715: /***/ ((module) => { "use strict"; @@ -25597,7 +25597,7 @@ function nextTick(fn, arg1, arg2, arg3) { /***/ }), -/***/ 6459: +/***/ 2228: /***/ ((module) => { "use strict"; @@ -25721,7 +25721,7 @@ module.exports.q = codes; /***/ }), -/***/ 1815: +/***/ 1331: /***/ ((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__(7978); +var Readable = __nccwpck_require__(8170); -var Writable = __nccwpck_require__(9979); +var Writable = __nccwpck_require__(1501); -__nccwpck_require__(3023)(Duplex, Readable); +__nccwpck_require__(468)(Duplex, Readable); { // Allow the keys array to be GC'ed. @@ -25867,7 +25867,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { /***/ }), -/***/ 4521: +/***/ 851: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25898,9 +25898,9 @@ Object.defineProperty(Duplex.prototype, 'destroyed', { module.exports = PassThrough; -var Transform = __nccwpck_require__(3395); +var Transform = __nccwpck_require__(8301); -__nccwpck_require__(3023)(PassThrough, Transform); +__nccwpck_require__(468)(PassThrough, Transform); function PassThrough(options) { if (!(this instanceof PassThrough)) return new PassThrough(options); @@ -25913,7 +25913,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { /***/ }), -/***/ 7978: +/***/ 8170: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -25958,7 +25958,7 @@ var EElistenerCount = function EElistenerCount(emitter, type) { /**/ -var Stream = __nccwpck_require__(1829); +var Stream = __nccwpck_require__(9664); /**/ @@ -25988,14 +25988,14 @@ if (debugUtil && debugUtil.debuglog) { /**/ -var BufferList = __nccwpck_require__(9401); +var BufferList = __nccwpck_require__(969); -var destroyImpl = __nccwpck_require__(2173); +var destroyImpl = __nccwpck_require__(9896); -var _require = __nccwpck_require__(4223), +var _require = __nccwpck_require__(5713), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(6459)/* .codes */ .q, +var _require$codes = __nccwpck_require__(2228)/* .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__(3023)(Readable, Stream); +__nccwpck_require__(468)(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__(1815); + Duplex = Duplex || __nccwpck_require__(1331); 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__(3571)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(4446)/* .StringDecoder */ .s; this.decoder = new StringDecoder(options.encoding); this.encoding = options.encoding; } } function Readable(options) { - Duplex = Duplex || __nccwpck_require__(1815); + Duplex = Duplex || __nccwpck_require__(1331); 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__(3571)/* .StringDecoder */ .s; + if (!StringDecoder) StringDecoder = __nccwpck_require__(4446)/* .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__(543); + createReadableStreamAsyncIterator = __nccwpck_require__(1421); } 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__(2852); + from = __nccwpck_require__(2566); } return from(Readable, iterable, opts); @@ -27044,7 +27044,7 @@ function indexOf(xs, x) { /***/ }), -/***/ 3395: +/***/ 8301: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27113,15 +27113,15 @@ function indexOf(xs, x) { module.exports = Transform; -var _require$codes = __nccwpck_require__(6459)/* .codes */ .q, +var _require$codes = __nccwpck_require__(2228)/* .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__(1815); +var Duplex = __nccwpck_require__(1331); -__nccwpck_require__(3023)(Transform, Duplex); +__nccwpck_require__(468)(Transform, Duplex); function afterTransform(er, data) { var ts = this._transformState; @@ -27252,7 +27252,7 @@ function done(stream, er, data) { /***/ }), -/***/ 9979: +/***/ 1501: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -27315,13 +27315,13 @@ Writable.WritableState = WritableState; /**/ var internalUtil = { - deprecate: __nccwpck_require__(9451) + deprecate: __nccwpck_require__(6467) }; /**/ /**/ -var Stream = __nccwpck_require__(1829); +var Stream = __nccwpck_require__(9664); /**/ @@ -27337,12 +27337,12 @@ function _isUint8Array(obj) { return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; } -var destroyImpl = __nccwpck_require__(2173); +var destroyImpl = __nccwpck_require__(9896); -var _require = __nccwpck_require__(4223), +var _require = __nccwpck_require__(5713), getHighWaterMark = _require.getHighWaterMark; -var _require$codes = __nccwpck_require__(6459)/* .codes */ .q, +var _require$codes = __nccwpck_require__(2228)/* .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__(6459)/* .codes */ .q, var errorOrDestroy = destroyImpl.errorOrDestroy; -__nccwpck_require__(3023)(Writable, Stream); +__nccwpck_require__(468)(Writable, Stream); function nop() {} function WritableState(options, stream, isDuplex) { - Duplex = Duplex || __nccwpck_require__(1815); + Duplex = Duplex || __nccwpck_require__(1331); 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__(1815); // Writable ctor is applied to Duplexes, too. + Duplex = Duplex || __nccwpck_require__(1331); // 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) { /***/ }), -/***/ 543: +/***/ 1421: /***/ ((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__(7019); +var finished = __nccwpck_require__(7067); var kLastResolve = Symbol('lastResolve'); var kLastReject = Symbol('lastReject'); @@ -28170,7 +28170,7 @@ module.exports = createReadableStreamAsyncIterator; /***/ }), -/***/ 9401: +/***/ 969: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28387,7 +28387,7 @@ function () { /***/ }), -/***/ 2173: +/***/ 9896: /***/ ((module) => { "use strict"; @@ -28499,7 +28499,7 @@ module.exports = { /***/ }), -/***/ 7019: +/***/ 7067: /***/ ((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__(6459)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; +var ERR_STREAM_PREMATURE_CLOSE = __nccwpck_require__(2228)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE; function once(callback) { var called = false; @@ -28610,7 +28610,7 @@ module.exports = eos; /***/ }), -/***/ 2852: +/***/ 2566: /***/ ((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__(6459)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; +var ERR_INVALID_ARG_TYPE = __nccwpck_require__(2228)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE; function from(Readable, iterable, opts) { var iterator; @@ -28681,7 +28681,7 @@ module.exports = from; /***/ }), -/***/ 5448: +/***/ 4412: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -28700,7 +28700,7 @@ function once(callback) { }; } -var _require$codes = __nccwpck_require__(6459)/* .codes */ .q, +var _require$codes = __nccwpck_require__(2228)/* .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__(7019); + if (eos === undefined) eos = __nccwpck_require__(7067); eos(stream, { readable: reading, writable: writing @@ -28785,13 +28785,13 @@ module.exports = pipeline; /***/ }), -/***/ 4223: +/***/ 5713: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var ERR_INVALID_OPT_VALUE = __nccwpck_require__(6459)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE; +var ERR_INVALID_OPT_VALUE = __nccwpck_require__(2228)/* .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 = { /***/ }), -/***/ 1829: +/***/ 9664: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = __nccwpck_require__(2413); @@ -28827,7 +28827,7 @@ module.exports = __nccwpck_require__(2413); /***/ }), -/***/ 1671: +/***/ 7425: /***/ ((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__(7978); + exports = module.exports = __nccwpck_require__(8170); exports.Stream = Stream || exports; exports.Readable = exports; - exports.Writable = __nccwpck_require__(9979); - exports.Duplex = __nccwpck_require__(1815); - exports.Transform = __nccwpck_require__(3395); - exports.PassThrough = __nccwpck_require__(4521); - exports.finished = __nccwpck_require__(7019); - exports.pipeline = __nccwpck_require__(5448); + exports.Writable = __nccwpck_require__(1501); + exports.Duplex = __nccwpck_require__(1331); + exports.Transform = __nccwpck_require__(8301); + exports.PassThrough = __nccwpck_require__(851); + exports.finished = __nccwpck_require__(7067); + exports.pipeline = __nccwpck_require__(4412); } /***/ }), -/***/ 6780: +/***/ 4465: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { module.exports = readdirGlob; const fs = __nccwpck_require__(5747); const { EventEmitter } = __nccwpck_require__(8614); -const { Minimatch } = __nccwpck_require__(1587); +const { Minimatch } = __nccwpck_require__(3032); const { resolve } = __nccwpck_require__(5622); function readdir(dir, strict) { @@ -29099,7 +29099,7 @@ readdirGlob.ReaddirGlob = ReaddirGlob; /***/ }), -/***/ 5519: +/***/ 475: /***/ ((module, exports, __nccwpck_require__) => { /* eslint-disable node/no-deprecated-api */ @@ -29168,7 +29168,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /***/ }), -/***/ 3571: +/***/ 4446: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -29197,7 +29197,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { /**/ -var Buffer = __nccwpck_require__(5519).Buffer; +var Buffer = __nccwpck_require__(475).Buffer; /**/ var isEncoding = Buffer.isEncoding || function (encoding) { @@ -29471,15 +29471,15 @@ function simpleEnd(buf) { /***/ }), -/***/ 4561: +/***/ 937: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { var util = __nccwpck_require__(1669) -var bl = __nccwpck_require__(5499) -var headers = __nccwpck_require__(8466) +var bl = __nccwpck_require__(6888) +var headers = __nccwpck_require__(6615) -var Writable = __nccwpck_require__(1671).Writable -var PassThrough = __nccwpck_require__(1671).PassThrough +var Writable = __nccwpck_require__(7425).Writable +var PassThrough = __nccwpck_require__(7425).PassThrough var noop = function () {} @@ -29735,7 +29735,7 @@ module.exports = Extract /***/ }), -/***/ 8466: +/***/ 6615: /***/ ((__unused_webpack_module, exports) => { var alloc = Buffer.alloc @@ -30037,28 +30037,28 @@ exports.decode = function (buf, filenameEncoding, allowUnknownFormat) { /***/ }), -/***/ 7175: +/***/ 3377: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -exports.extract = __nccwpck_require__(4561) -exports.pack = __nccwpck_require__(8545) +exports.extract = __nccwpck_require__(937) +exports.pack = __nccwpck_require__(4559) /***/ }), -/***/ 8545: +/***/ 4559: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var constants = __nccwpck_require__(4744) -var eos = __nccwpck_require__(8637) -var inherits = __nccwpck_require__(3023) +var constants = __nccwpck_require__(116) +var eos = __nccwpck_require__(2904) +var inherits = __nccwpck_require__(468) var alloc = Buffer.alloc -var Readable = __nccwpck_require__(1671).Readable -var Writable = __nccwpck_require__(1671).Writable +var Readable = __nccwpck_require__(7425).Readable +var Writable = __nccwpck_require__(7425).Writable var StringDecoder = __nccwpck_require__(4304).StringDecoder -var headers = __nccwpck_require__(8466) +var headers = __nccwpck_require__(6615) var DMODE = parseInt('755', 8) var FMODE = parseInt('644', 8) @@ -30308,7 +30308,7 @@ module.exports = Pack /***/ }), -/***/ 9451: +/***/ 6467: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -30321,7 +30321,7 @@ module.exports = __nccwpck_require__(1669).deprecate; /***/ }), -/***/ 9242: +/***/ 9222: /***/ ((module) => { // Returns a wrapper function that returns a wrapped callback @@ -30361,7 +30361,7 @@ function wrappy (fn, cb) { /***/ }), -/***/ 9448: +/***/ 7645: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -30373,10 +30373,10 @@ function wrappy (fn, cb) { */ var inherits = __nccwpck_require__(1669).inherits; -var ZipArchiveOutputStream = __nccwpck_require__(3169).ZipArchiveOutputStream; -var ZipArchiveEntry = __nccwpck_require__(3169).ZipArchiveEntry; +var ZipArchiveOutputStream = __nccwpck_require__(3541).ZipArchiveOutputStream; +var ZipArchiveEntry = __nccwpck_require__(3541).ZipArchiveEntry; -var util = __nccwpck_require__(6383); +var util = __nccwpck_require__(4699); /** * @constructor @@ -30555,7 +30555,7 @@ ZipStream.prototype.finalize = function() { /***/ }), -/***/ 1801: +/***/ 9539: /***/ ((module) => { module.exports = eval("require")("encoding"); @@ -30726,8 +30726,8 @@ var __webpack_exports__ = {}; var exports = __webpack_exports__; Object.defineProperty(exports, "__esModule", ({ value: true })); -const Inputs_1 = __nccwpck_require__(9338); -const NextcloudArtifact_1 = __nccwpck_require__(8891); +const Inputs_1 = __nccwpck_require__(8458); +const NextcloudArtifact_1 = __nccwpck_require__(2409); 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 7f8a435..3a50986 100644 --- a/src/nextcloud/NextcloudClient.ts +++ b/src/nextcloud/NextcloudClient.ts @@ -2,7 +2,7 @@ import * as fsSync from 'fs' import * as path from 'path' import * as core from '@actions/core'; import * as os from 'os'; -import { randomUUID } from 'crypto'; +import * as crypto from 'crypto'; import * as archiver from 'archiver'; import { URL } from 'url'; import fetch, { HeadersInit } from 'node-fetch'; @@ -24,7 +24,7 @@ export class NextcloudClient { private endpoint: string, private artifact: string, private rootDirectory: string) { - this.guid = randomUUID(); + this.guid = crypto.randomUUID(); this.headers = {'Authorization': 'Basic ' + btoa(`${Inputs.Username}:${Inputs.Password}`)}; }