nightingale-html-formatter 12.0.1 → 12.1.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/.eslintrc.json +1 -1
- package/CHANGELOG.md +38 -0
- package/dist/index-browser.cjs.js +2 -2
- package/dist/index-browser.cjs.js.map +1 -1
- package/dist/index-browser.es.js +2 -2
- package/dist/index-browser.es.js.map +1 -1
- package/package.json +11 -11
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [12.1.3](https://github.com/christophehurpeau/nightingale/compare/v12.1.2...v12.1.3) (2022-01-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package nightingale-html-formatter
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [12.1.2](https://github.com/christophehurpeau/nightingale/compare/v12.1.1...v12.1.2) (2022-01-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* main esm for jest which supports esm but not exports ([98789fa](https://github.com/christophehurpeau/nightingale/commit/98789fa490e723840fccc443584189b6905d871b))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [12.1.1](https://github.com/christophehurpeau/nightingale/compare/v12.1.0...v12.1.1) (2022-01-01)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* properly configure package type ([2e0cbf5](https://github.com/christophehurpeau/nightingale/commit/2e0cbf555bd3b9fa3c3851025452937f64408aa8))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [12.1.0](https://github.com/christophehurpeau/nightingale/compare/v12.0.1...v12.1.0) (2021-12-15)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package nightingale-html-formatter
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [12.0.1](https://github.com/christophehurpeau/nightingale/compare/v12.0.0...v12.0.1) (2021-12-12)
|
|
7
45
|
|
|
8
46
|
**Note:** Version bump only for package nightingale-html-formatter
|
|
@@ -9,9 +9,9 @@ function style(styles, string) {
|
|
|
9
9
|
return string;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
return
|
|
12
|
+
return "<span style=\"" + styles.map(function (styleName) {
|
|
13
13
|
return nightingaleFormatter.styleToHtmlStyleThemeLight[styleName].open;
|
|
14
|
-
}).join('; ')
|
|
14
|
+
}).join('; ') + "\">" + string + "</span>";
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* @param {Object} record
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-browser.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,
|
|
1
|
+
{"version":3,"file":"index-browser.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,4BAAuBD,MAAM,CAC1BG,GADoB,CAChB,UAACC,SAAD;AAAA,WAAuBC,+CAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAA7D;AAAA,GADgB,EAEpBC,IAFoB,CAEf,IAFe,CAAvB,WAEkBN,MAFlB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,yCAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
package/dist/index-browser.es.js
CHANGED
|
@@ -5,9 +5,9 @@ function style(styles, string) {
|
|
|
5
5
|
return string;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
return
|
|
8
|
+
return "<span style=\"" + styles.map(function (styleName) {
|
|
9
9
|
return styleToHtmlStyleThemeLight[styleName].open;
|
|
10
|
-
}).join('; ')
|
|
10
|
+
}).join('; ') + "\">" + string + "</span>";
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* @param {Object} record
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-browser.es.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,
|
|
1
|
+
{"version":3,"file":"index-browser.es.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,4BAAuBD,MAAM,CAC1BG,GADoB,CAChB,UAACC,SAAD;AAAA,WAAuBC,0BAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAA7D;AAAA,GADgB,EAEpBC,IAFoB,CAEf,IAFe,CAAvB,WAEkBN,MAFlB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale-html-formatter",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.3",
|
|
4
4
|
"description": "Nightingale HTML formatter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nightingale",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"directory": "packages/nightingale-html-formatter"
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://github.com/christophehurpeau/nightingale",
|
|
17
|
-
"type": "
|
|
17
|
+
"type": "module",
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": "^14.13.1 || >=16.0.0"
|
|
20
20
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"not safari < 10",
|
|
26
26
|
"not ios_saf < 10"
|
|
27
27
|
],
|
|
28
|
-
"main": "./dist/index-node14.
|
|
28
|
+
"main": "./dist/index-node14.mjs",
|
|
29
29
|
"types": "./dist/index.d.ts",
|
|
30
30
|
"module": "./dist/index-browser.es.js",
|
|
31
31
|
"browser": "./dist/index-browser.es.js",
|
|
@@ -91,16 +91,16 @@
|
|
|
91
91
|
]
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
|
-
"nightingale-formatter": "12.
|
|
95
|
-
"nightingale-types": "12.
|
|
94
|
+
"nightingale-formatter": "12.1.3",
|
|
95
|
+
"nightingale-types": "12.1.3"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@babel/core": "7.16.
|
|
99
|
-
"@babel/preset-env": "7.16.
|
|
98
|
+
"@babel/core": "7.16.7",
|
|
99
|
+
"@babel/preset-env": "7.16.8",
|
|
100
100
|
"babel-preset-modern-browsers": "15.0.2",
|
|
101
|
-
"nightingale-levels": "12.
|
|
102
|
-
"pob-babel": "29.
|
|
103
|
-
"typescript": "4.5.
|
|
101
|
+
"nightingale-levels": "12.1.3",
|
|
102
|
+
"pob-babel": "29.6.1",
|
|
103
|
+
"typescript": "4.5.4"
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "67fdeb8e3c6660b8bfa4eed4b66b2c05876ed9cc"
|
|
106
106
|
}
|