@parcel/diagnostic 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/diagnostic.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parcel/diagnostic",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"json-source-map": "^0.6.1",
|
|
28
28
|
"nullthrows": "^1.1.1"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "28b47e6bdca7de2a06b7cc39a4a0b1df89f3fe15"
|
|
31
31
|
}
|
package/src/diagnostic.js
CHANGED
|
@@ -313,22 +313,22 @@ export function md(
|
|
|
313
313
|
return result.join('') + strings[strings.length - 1];
|
|
314
314
|
}
|
|
315
315
|
|
|
316
|
-
md.bold = function(s: TemplateInput): TemplateInput {
|
|
316
|
+
md.bold = function (s: TemplateInput): TemplateInput {
|
|
317
317
|
// $FlowFixMe[invalid-computed-prop]
|
|
318
318
|
return {[mdVerbatim]: '**' + escapeMarkdown(`${s}`) + '**'};
|
|
319
319
|
};
|
|
320
320
|
|
|
321
|
-
md.italic = function(s: TemplateInput): TemplateInput {
|
|
321
|
+
md.italic = function (s: TemplateInput): TemplateInput {
|
|
322
322
|
// $FlowFixMe[invalid-computed-prop]
|
|
323
323
|
return {[mdVerbatim]: '_' + escapeMarkdown(`${s}`) + '_'};
|
|
324
324
|
};
|
|
325
325
|
|
|
326
|
-
md.underline = function(s: TemplateInput): TemplateInput {
|
|
326
|
+
md.underline = function (s: TemplateInput): TemplateInput {
|
|
327
327
|
// $FlowFixMe[invalid-computed-prop]
|
|
328
328
|
return {[mdVerbatim]: '__' + escapeMarkdown(`${s}`) + '__'};
|
|
329
329
|
};
|
|
330
330
|
|
|
331
|
-
md.strikethrough = function(s: TemplateInput): TemplateInput {
|
|
331
|
+
md.strikethrough = function (s: TemplateInput): TemplateInput {
|
|
332
332
|
// $FlowFixMe[invalid-computed-prop]
|
|
333
333
|
return {[mdVerbatim]: '~~' + escapeMarkdown(`${s}`) + '~~'};
|
|
334
334
|
};
|