Skip to content

Commit 2072c46

Browse files
committed
Fix bad formatting again
1 parent 8047ec3 commit 2072c46

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function getListOfErrors(title, errors, thresholdCollapse = 5) {
258258
const shouldUseCollapsible = errors.length > thresholdCollapse;
259259
let s = ``;
260260
if (shouldUseCollapsible) {
261-
s += `< details > <summary>${title} </summary> \n`;
261+
s += `<details><summary>${title} </summary> \n`;
262262
s += BLANK_LINE;
263263
s += BLANK_LINE;
264264
}

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/tsserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158316,7 +158316,7 @@ var ts;
158316158316
function getDefaultLibFilePath(options) {
158317158317
// Check __dirname is defined and that we are on a node.js system.
158318158318
if (typeof __dirname !== "undefined") {
158319-
return __nccwpck_require__.ab + "typescript3/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158319+
return __nccwpck_require__.ab + "typescript2/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158320158320
}
158321158321
throw new Error("getDefaultLibFilePath is only supported when consumed as a node module. ");
158322158322
}

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/typescript.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 + "typescript1/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 + "typescript1/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158814+
return __nccwpck_require__.ab + "typescript3/lib" + ts.directorySeparator + '' + ts.getDefaultLibFileName(options);
158815158815
}
158816158816
throw new Error("getDefaultLibFilePath is only supported when consumed as a node module. ");
158817158817
}

src/getBodyComment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function getListOfErrors(title: string, errors: ErrorTs[], thresholdCollapse = 5
7777
let s = ``
7878

7979
if (shouldUseCollapsible) {
80-
s += `< details > <summary>${title} </summary> \n`
80+
s += `<details><summary>${title} </summary> \n`
8181
s += BLANK_LINE
8282
s += BLANK_LINE
8383
} else {

0 commit comments

Comments
 (0)