mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-14 23:17:25 +00:00
Update package-lock.json
This commit is contained in:
parent
6243a75ef3
commit
174efc5984
3 changed files with 682 additions and 555 deletions
160
dist/index.js
vendored
160
dist/index.js
vendored
|
|
@ -3012,7 +3012,7 @@ exports.Octokit = Octokit;
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
|
||||||
var isPlainObject = __nccwpck_require__(558);
|
var isPlainObject = __nccwpck_require__(3287);
|
||||||
var universalUserAgent = __nccwpck_require__(5030);
|
var universalUserAgent = __nccwpck_require__(5030);
|
||||||
|
|
||||||
function lowercaseKeys(object) {
|
function lowercaseKeys(object) {
|
||||||
|
|
@ -3400,52 +3400,6 @@ exports.endpoint = endpoint;
|
||||||
//# sourceMappingURL=index.js.map
|
//# sourceMappingURL=index.js.map
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 558:
|
|
||||||
/***/ ((__unused_webpack_module, exports) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
||||||
*
|
|
||||||
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
||||||
* Released under the MIT License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
function isObject(o) {
|
|
||||||
return Object.prototype.toString.call(o) === '[object Object]';
|
|
||||||
}
|
|
||||||
|
|
||||||
function isPlainObject(o) {
|
|
||||||
var ctor,prot;
|
|
||||||
|
|
||||||
if (isObject(o) === false) return false;
|
|
||||||
|
|
||||||
// If has modified constructor
|
|
||||||
ctor = o.constructor;
|
|
||||||
if (ctor === undefined) return true;
|
|
||||||
|
|
||||||
// If has modified prototype
|
|
||||||
prot = ctor.prototype;
|
|
||||||
if (isObject(prot) === false) return false;
|
|
||||||
|
|
||||||
// If constructor does not have an Object-specific method
|
|
||||||
if (prot.hasOwnProperty('isPrototypeOf') === false) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Most likely a plain Object
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.isPlainObject = isPlainObject;
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 8467:
|
/***/ 8467:
|
||||||
|
|
@ -4926,7 +4880,7 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau
|
||||||
|
|
||||||
var endpoint = __nccwpck_require__(9440);
|
var endpoint = __nccwpck_require__(9440);
|
||||||
var universalUserAgent = __nccwpck_require__(5030);
|
var universalUserAgent = __nccwpck_require__(5030);
|
||||||
var isPlainObject = __nccwpck_require__(9062);
|
var isPlainObject = __nccwpck_require__(3287);
|
||||||
var nodeFetch = _interopDefault(__nccwpck_require__(1768));
|
var nodeFetch = _interopDefault(__nccwpck_require__(1768));
|
||||||
var requestError = __nccwpck_require__(537);
|
var requestError = __nccwpck_require__(537);
|
||||||
|
|
||||||
|
|
@ -5097,52 +5051,6 @@ exports.request = request;
|
||||||
//# sourceMappingURL=index.js.map
|
//# sourceMappingURL=index.js.map
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 9062:
|
|
||||||
/***/ ((__unused_webpack_module, exports) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
||||||
*
|
|
||||||
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
||||||
* Released under the MIT License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
function isObject(o) {
|
|
||||||
return Object.prototype.toString.call(o) === '[object Object]';
|
|
||||||
}
|
|
||||||
|
|
||||||
function isPlainObject(o) {
|
|
||||||
var ctor,prot;
|
|
||||||
|
|
||||||
if (isObject(o) === false) return false;
|
|
||||||
|
|
||||||
// If has modified constructor
|
|
||||||
ctor = o.constructor;
|
|
||||||
if (ctor === undefined) return true;
|
|
||||||
|
|
||||||
// If has modified prototype
|
|
||||||
prot = ctor.prototype;
|
|
||||||
if (isObject(prot) === false) return false;
|
|
||||||
|
|
||||||
// If constructor does not have an Object-specific method
|
|
||||||
if (prot.hasOwnProperty('isPrototypeOf') === false) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Most likely a plain Object
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.isPlainObject = isPlainObject;
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 1768:
|
/***/ 1768:
|
||||||
|
|
@ -14616,6 +14524,52 @@ if (typeof Object.create === 'function') {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 3287:
|
||||||
|
/***/ ((__unused_webpack_module, exports) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
||||||
|
*
|
||||||
|
* Copyright (c) 2014-2017, Jon Schlinkert.
|
||||||
|
* Released under the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function isObject(o) {
|
||||||
|
return Object.prototype.toString.call(o) === '[object Object]';
|
||||||
|
}
|
||||||
|
|
||||||
|
function isPlainObject(o) {
|
||||||
|
var ctor,prot;
|
||||||
|
|
||||||
|
if (isObject(o) === false) return false;
|
||||||
|
|
||||||
|
// If has modified constructor
|
||||||
|
ctor = o.constructor;
|
||||||
|
if (ctor === undefined) return true;
|
||||||
|
|
||||||
|
// If has modified prototype
|
||||||
|
prot = ctor.prototype;
|
||||||
|
if (isObject(prot) === false) return false;
|
||||||
|
|
||||||
|
// If constructor does not have an Object-specific method
|
||||||
|
if (prot.hasOwnProperty('isPrototypeOf') === false) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Most likely a plain Object
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
exports.isPlainObject = isPlainObject;
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 910:
|
/***/ 910:
|
||||||
|
|
@ -22249,6 +22203,9 @@ class BlobDataItem {
|
||||||
this.#start = options.start
|
this.#start = options.start
|
||||||
this.size = options.size
|
this.size = options.size
|
||||||
this.lastModified = options.lastModified
|
this.lastModified = options.lastModified
|
||||||
|
this.originalSize = options.originalSize === undefined
|
||||||
|
? options.size
|
||||||
|
: options.originalSize
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -22259,16 +22216,19 @@ class BlobDataItem {
|
||||||
return new BlobDataItem({
|
return new BlobDataItem({
|
||||||
path: this.#path,
|
path: this.#path,
|
||||||
lastModified: this.lastModified,
|
lastModified: this.lastModified,
|
||||||
|
originalSize: this.originalSize,
|
||||||
size: end - start,
|
size: end - start,
|
||||||
start: this.#start + start
|
start: this.#start + start
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async * stream () {
|
async * stream () {
|
||||||
const { mtimeMs } = await stat(this.#path)
|
const { mtimeMs, size } = await stat(this.#path)
|
||||||
if (mtimeMs > this.lastModified) {
|
|
||||||
|
if (mtimeMs > this.lastModified || this.originalSize !== size) {
|
||||||
throw new DOMException('The requested file could not be read, typically due to permission problems that have occurred after a reference to a file was acquired.', 'NotReadableError')
|
throw new DOMException('The requested file could not be read, typically due to permission problems that have occurred after a reference to a file was acquired.', 'NotReadableError')
|
||||||
}
|
}
|
||||||
|
|
||||||
yield * createReadStream(this.#path, {
|
yield * createReadStream(this.#path, {
|
||||||
start: this.#start,
|
start: this.#start,
|
||||||
end: this.#start + this.size - 1
|
end: this.#start + this.size - 1
|
||||||
|
|
@ -22380,8 +22340,12 @@ const _Blob = class Blob {
|
||||||
part = encoder.encode(`${element}`)
|
part = encoder.encode(`${element}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
this.#size += ArrayBuffer.isView(part) ? part.byteLength : part.size
|
const size = ArrayBuffer.isView(part) ? part.byteLength : part.size
|
||||||
this.#parts.push(part)
|
// Avoid pushing empty parts into the array to better GC them
|
||||||
|
if (size) {
|
||||||
|
this.#size += size
|
||||||
|
this.#parts.push(part)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.#endings = `${options.endings === undefined ? 'transparent' : options.endings}`
|
this.#endings = `${options.endings === undefined ? 'transparent' : options.endings}`
|
||||||
|
|
|
||||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
1075
package-lock.json
generated
1075
package-lock.json
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue