t-comm
Version:
专业、稳定、纯粹的工具库
55 lines (50 loc) • 2.97 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var nodejs_child_process = require('../nodejs/child_process.js');
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
function getTSErrorFiles(options) {
var _a, _b;
var command = (_a = options === null || options === void 0 ? void 0 : options.command) !== null && _a !== void 0 ? _a : 'npx tsc --noEmit --pretty false --listEmittedFiles false || true';
var root = (_b = options === null || options === void 0 ? void 0 : options.root) !== null && _b !== void 0 ? _b : process.cwd();
var _getChildProcess = nodejs_child_process.getChildProcess(),
execSync = _getChildProcess.execSync;
var res = execSync(command, {
cwd: root,
encoding: 'utf-8',
stdio: 'pipe'
});
var result = parseTypeScriptErrors(res);
console.log('[getTSErrorFiles]', result);
return result;
}
function parseTypeScriptErrors(errorString) {
var errorLines = errorString.split('\n');
var errors = [];
var _iterator = _createForOfIteratorHelper(errorLines),
_step;
try {
for (_iterator.s(); !(_step = _iterator.n()).done;) {
var line = _step.value;
var fileMatch = line.match(/^(.*?)\((\d+),(\d+)\):\s*error\s*(TS\d+):\s*(.*)$/);
if (!fileMatch) {
continue;
}
var result = {
file: fileMatch[1],
line: +fileMatch[2],
column: +fileMatch[3],
code: fileMatch[4],
message: fileMatch[5]
};
errors.push(result);
}
} catch (err) {
_iterator.e(err);
} finally {
_iterator.f();
}
return errors;
}
exports.getTSErrorFiles = getTSErrorFiles;