Skip to content

Commit 24178a1

Browse files
committed
update package
1 parent ba3142f commit 24178a1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ function getListOfErrors(title, errors, thresholdCollapse = 5) {
268268
s += `\nFilename|Location|Message\n`;
269269
s += `-- | -- | -- \n`;
270270
s += errors.map(err => {
271-
return `${err.fileName}|${err.line}, ${err.column}|${err.message}`;
271+
return `${err.fileName}|${err.line}, ${err.column}|${escapeForMarkdown(err.message)}`;
272272
}).join('\n');
273273
if (shouldUseCollapsible) {
274274
s += BLANK_LINE;

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/typescript/lib/tsserverlibrary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158811,7 +158811,7 @@ var ts;
158811158811
function getDefaultLibFilePath(options) {
158812158812
// Check __dirname is defined and that we are on a node.js system.
158813158813
if (typeof __dirname !== "undefined") {
158814-
return __nccwpck_require__.ab + "typescript2/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158814+
return __nccwpck_require__.ab + "typescript4/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158815158815
}
158816158816
throw new Error("getDefaultLibFilePath is only supported when consumed as a node module. ");
158817158817
}

dist/typescript/lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158811,7 +158811,7 @@ var ts;
158811158811
function getDefaultLibFilePath(options) {
158812158812
// Check __dirname is defined and that we are on a node.js system.
158813158813
if (typeof __dirname !== "undefined") {
158814-
return __nccwpck_require__.ab + "typescript4/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158814+
return __nccwpck_require__.ab + "typescript2/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158815158815
}
158816158816
throw new Error("getDefaultLibFilePath is only supported when consumed as a node module. ");
158817158817
}

0 commit comments

Comments
 (0)