@parcel/diagnostic 2.14.4 → 2.15.0
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/lib/diagnostic.d.ts +4 -4
- package/package.json +3 -3
package/lib/diagnostic.d.ts
CHANGED
|
@@ -150,9 +150,9 @@ export declare function escapeMarkdown(s: string): string;
|
|
|
150
150
|
type TemplateInput = any;
|
|
151
151
|
export declare function md(strings: Array<string>, ...params: Array<TemplateInput>): string;
|
|
152
152
|
export declare namespace md {
|
|
153
|
-
var bold: (s:
|
|
154
|
-
var italic: (s:
|
|
155
|
-
var underline: (s:
|
|
156
|
-
var strikethrough: (s:
|
|
153
|
+
var bold: (s: TemplateInput) => TemplateInput;
|
|
154
|
+
var italic: (s: TemplateInput) => TemplateInput;
|
|
155
|
+
var underline: (s: TemplateInput) => TemplateInput;
|
|
156
|
+
var strikethrough: (s: TemplateInput) => TemplateInput;
|
|
157
157
|
}
|
|
158
158
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parcel/diagnostic",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "Types and utilities for printing source-code located errors, warning and information messages.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"check-ts": "tsc --noEmit lib/diagnostic.d.ts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@mischnic/json-sourcemap": "^0.1.
|
|
28
|
+
"@mischnic/json-sourcemap": "^0.1.1",
|
|
29
29
|
"nullthrows": "^1.1.1"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "99ada2e5258f6d4a2c6cdc366c12e4161b0161e6"
|
|
32
32
|
}
|