Skip to content

Commit

Permalink
Fix parsing (#36)
Browse files Browse the repository at this point in the history
* packages update

* fix parsing issues in osme cases

* 1.1.13
  • Loading branch information
MishaKav authored Dec 1, 2021
1 parent 672d019 commit cbff542
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 107 deletions.
102 changes: 51 additions & 51 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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 os = __importStar(__nccwpck_require__(2037));
const utils_1 = __nccwpck_require__(5278);
/**
* Commands
Expand Down Expand Up @@ -138,8 +138,8 @@ exports.getIDToken = exports.getState = exports.saveState = exports.group = expo
const command_1 = __nccwpck_require__(7351);
const file_command_1 = __nccwpck_require__(717);
const utils_1 = __nccwpck_require__(5278);
const os = __importStar(__nccwpck_require__(2087));
const path = __importStar(__nccwpck_require__(5622));
const os = __importStar(__nccwpck_require__(2037));
const path = __importStar(__nccwpck_require__(1017));
const oidc_utils_1 = __nccwpck_require__(8041);
/**
* The code to exit an action
Expand Down Expand Up @@ -448,8 +448,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.issueCommand = void 0;
// We use any as a valid input type
/* eslint-disable @typescript-eslint/no-explicit-any */
const fs = __importStar(__nccwpck_require__(5747));
const os = __importStar(__nccwpck_require__(2087));
const fs = __importStar(__nccwpck_require__(7147));
const os = __importStar(__nccwpck_require__(2037));
const utils_1 = __nccwpck_require__(5278);
function issueCommand(command, message) {
const filePath = process.env[`GITHUB_${command}`];
Expand Down Expand Up @@ -606,8 +606,8 @@ exports.toCommandProperties = toCommandProperties;

Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.Context = void 0;
const fs_1 = __nccwpck_require__(5747);
const os_1 = __nccwpck_require__(2087);
const fs_1 = __nccwpck_require__(7147);
const os_1 = __nccwpck_require__(2037);
class Context {
/**
* Hydrate the context from the environment
Expand Down Expand Up @@ -882,8 +882,8 @@ exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHand
"use strict";

Object.defineProperty(exports, "__esModule", ({ value: true }));
const http = __nccwpck_require__(8605);
const https = __nccwpck_require__(7211);
const http = __nccwpck_require__(3685);
const https = __nccwpck_require__(5687);
const pm = __nccwpck_require__(6443);
let tunnel;
var HttpCodes;
Expand Down Expand Up @@ -4165,11 +4165,11 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));

function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }

var Stream = _interopDefault(__nccwpck_require__(2413));
var http = _interopDefault(__nccwpck_require__(8605));
var Url = _interopDefault(__nccwpck_require__(8835));
var https = _interopDefault(__nccwpck_require__(7211));
var zlib = _interopDefault(__nccwpck_require__(8761));
var Stream = _interopDefault(__nccwpck_require__(2781));
var http = _interopDefault(__nccwpck_require__(3685));
var Url = _interopDefault(__nccwpck_require__(7310));
var https = _interopDefault(__nccwpck_require__(5687));
var zlib = _interopDefault(__nccwpck_require__(9796));

// Based on https://github.com/tmpvar/jsdom/blob/aa85b2abf07766ff7bf5c1f6daafb3726f2f2db5/lib/jsdom/living/blob.js

Expand Down Expand Up @@ -4320,7 +4320,7 @@ FetchError.prototype.name = 'FetchError';

let convert;
try {
convert = __nccwpck_require__(2877).convert;
convert = (__nccwpck_require__(2877).convert);
} catch (e) {}

const INTERNALS = Symbol('Body internals');
Expand Down Expand Up @@ -5803,7 +5803,7 @@ fetch.Promise = global.Promise;

module.exports = exports = fetch;
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.default = exports;
exports["default"] = exports;
exports.Headers = Headers;
exports.Request = Request;
exports.Response = Response;
Expand Down Expand Up @@ -6026,7 +6026,7 @@ function onceStrict (fn) {

var Stream
try {
Stream = __nccwpck_require__(2413).Stream
Stream = (__nccwpck_require__(2781).Stream)
} catch (ex) {
Stream = function () {}
}
Expand Down Expand Up @@ -6096,7 +6096,7 @@ function onceStrict (fn) {
typeof Buffer.isBuffer === 'function' &&
Buffer.isBuffer(data)) {
if (!this._decoder) {
var SD = __nccwpck_require__(4304).StringDecoder
var SD = (__nccwpck_require__(1576).StringDecoder)
this._decoder = new SD('utf8')
}
data = this._decoder.write(data)
Expand Down Expand Up @@ -7447,13 +7447,13 @@ module.exports = __nccwpck_require__(4219);
"use strict";


var net = __nccwpck_require__(1631);
var tls = __nccwpck_require__(4016);
var http = __nccwpck_require__(8605);
var https = __nccwpck_require__(7211);
var events = __nccwpck_require__(8614);
var assert = __nccwpck_require__(2357);
var util = __nccwpck_require__(1669);
var net = __nccwpck_require__(1808);
var tls = __nccwpck_require__(4404);
var http = __nccwpck_require__(3685);
var https = __nccwpck_require__(5687);
var events = __nccwpck_require__(2361);
var assert = __nccwpck_require__(9491);
var util = __nccwpck_require__(3837);


exports.httpOverHttp = httpOverHttp;
Expand Down Expand Up @@ -7809,7 +7809,7 @@ function wrappy (fn, cb) {

builder = __nccwpck_require__(2958);

defaults = __nccwpck_require__(7251).defaults;
defaults = (__nccwpck_require__(7251).defaults);

requiresCDATA = function(entry) {
return typeof entry === "string" && (entry.indexOf('&') >= 0 || entry.indexOf('>') >= 0 || entry.indexOf('<') >= 0);
Expand Down Expand Up @@ -8024,15 +8024,15 @@ function wrappy (fn, cb) {

sax = __nccwpck_require__(2043);

events = __nccwpck_require__(8614);
events = __nccwpck_require__(2361);

bom = __nccwpck_require__(2624);

processors = __nccwpck_require__(9236);

setImmediate = __nccwpck_require__(8213).setImmediate;
setImmediate = (__nccwpck_require__(9512).setImmediate);

defaults = __nccwpck_require__(7251).defaults;
defaults = (__nccwpck_require__(7251).defaults);

isEmpty = function(thing) {
return typeof thing === "object" && (thing != null) && Object.keys(thing).length === 0;
Expand Down Expand Up @@ -9213,7 +9213,7 @@ function wrappy (fn, cb) {
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;

isObject = __nccwpck_require__(8229).isObject;
isObject = (__nccwpck_require__(8229).isObject);

XMLNode = __nccwpck_require__(7608);

Expand Down Expand Up @@ -9376,7 +9376,7 @@ function wrappy (fn, cb) {
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;

isObject = __nccwpck_require__(8229).isObject;
isObject = (__nccwpck_require__(8229).isObject);

XMLNode = __nccwpck_require__(7608);

Expand Down Expand Up @@ -9426,7 +9426,7 @@ function wrappy (fn, cb) {
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;

isObject = __nccwpck_require__(8229).isObject;
isObject = (__nccwpck_require__(8229).isObject);

XMLNode = __nccwpck_require__(7608);

Expand Down Expand Up @@ -9619,7 +9619,7 @@ function wrappy (fn, cb) {
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;

isPlainObject = __nccwpck_require__(8229).isPlainObject;
isPlainObject = (__nccwpck_require__(8229).isPlainObject);

XMLDOMImplementation = __nccwpck_require__(8310);

Expand Down Expand Up @@ -12283,7 +12283,7 @@ function wrappy (fn, cb) {
var NodeType, WriterState, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLProcessingInstruction, XMLRaw, XMLText, XMLWriterBase, assign,
hasProp = {}.hasOwnProperty;

assign = __nccwpck_require__(8229).assign;
assign = (__nccwpck_require__(8229).assign);

NodeType = __nccwpck_require__(9267);

Expand Down Expand Up @@ -13129,7 +13129,7 @@ const getTotal = (data) => {
}

const lines = data.split('\n');
const line = lines.find((l) => l.includes('TOTAL '));
const line = lines.find((l) => l.includes('TOTAL '));

return parseOneLine(line);
};
Expand Down Expand Up @@ -13327,7 +13327,7 @@ module.exports = { getCoverageReport };
/***/ 1608:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

const fs = __nccwpck_require__(5747);
const fs = __nccwpck_require__(7147);

const getPathToFile = (pathToFile) => {
if (!pathToFile) {
Expand Down Expand Up @@ -13377,119 +13377,119 @@ module.exports = eval("require")("encoding");

/***/ }),

/***/ 2357:
/***/ 9491:
/***/ ((module) => {

"use strict";
module.exports = require("assert");

/***/ }),

/***/ 8614:
/***/ 2361:
/***/ ((module) => {

"use strict";
module.exports = require("events");

/***/ }),

/***/ 5747:
/***/ 7147:
/***/ ((module) => {

"use strict";
module.exports = require("fs");

/***/ }),

/***/ 8605:
/***/ 3685:
/***/ ((module) => {

"use strict";
module.exports = require("http");

/***/ }),

/***/ 7211:
/***/ 5687:
/***/ ((module) => {

"use strict";
module.exports = require("https");

/***/ }),

/***/ 1631:
/***/ 1808:
/***/ ((module) => {

"use strict";
module.exports = require("net");

/***/ }),

/***/ 2087:
/***/ 2037:
/***/ ((module) => {

"use strict";
module.exports = require("os");

/***/ }),

/***/ 5622:
/***/ 1017:
/***/ ((module) => {

"use strict";
module.exports = require("path");

/***/ }),

/***/ 2413:
/***/ 2781:
/***/ ((module) => {

"use strict";
module.exports = require("stream");

/***/ }),

/***/ 4304:
/***/ 1576:
/***/ ((module) => {

"use strict";
module.exports = require("string_decoder");

/***/ }),

/***/ 8213:
/***/ 9512:
/***/ ((module) => {

"use strict";
module.exports = require("timers");

/***/ }),

/***/ 4016:
/***/ 4404:
/***/ ((module) => {

"use strict";
module.exports = require("tls");

/***/ }),

/***/ 8835:
/***/ 7310:
/***/ ((module) => {

"use strict";
module.exports = require("url");

/***/ }),

/***/ 1669:
/***/ 3837:
/***/ ((module) => {

"use strict";
module.exports = require("util");

/***/ }),

/***/ 8761:
/***/ 9796:
/***/ ((module) => {

"use strict";
Expand Down
Loading

0 comments on commit cbff542

Please sign in to comment.