@symbiotejs/symbiote 3.5.2 → 3.5.3
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/core/devMessages.js +2 -2
- package/package.json +1 -1
package/core/devMessages.js
CHANGED
|
@@ -25,13 +25,13 @@ function fmt(code, body, doc, tag) {
|
|
|
25
25
|
return `[Symbiote ${code}]${tag ? ` <${tag}>:` : ''} ${body}\n→ ${DOCS}${doc}.md`;
|
|
26
26
|
}
|
|
27
27
|
let isErr = code.startsWith('E');
|
|
28
|
-
let parts = `%
|
|
28
|
+
let parts = `%c Symbiote %c ${code} %c`;
|
|
29
29
|
let styles = [S.badge, isErr ? S.errCode : S.code, S.reset];
|
|
30
30
|
if (tag) {
|
|
31
31
|
parts += ` %c<${tag}>%c`;
|
|
32
32
|
styles.push(S.tag, S.reset);
|
|
33
33
|
}
|
|
34
|
-
parts += ` ${body}
|
|
34
|
+
parts += ` ${body}\n%c→ ${DOCS}${doc}.md`;
|
|
35
35
|
styles.push(S.dim);
|
|
36
36
|
return [parts, ...styles];
|
|
37
37
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@symbiotejs/symbiote",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.3",
|
|
5
5
|
"description": "Symbiote.js - zero-dependency close-to-platform frontend library to build super-powered web components",
|
|
6
6
|
"author": "team@rnd-pro.com",
|
|
7
7
|
"license": "MIT",
|