@kobalab/liulian 1.1.8 → 1.1.9

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/ChangeLog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### v1.1.9 / 2023-03-18
2
+
3
+ - TwitterカードのアイコンURLが正しくないバグを修正
4
+
1
5
  ### v1.1.8 / 2023-03-17
2
6
 
3
7
  - アイコンが表示されないバグを修正
package/lib/html/index.js CHANGED
@@ -92,7 +92,7 @@ module.exports = class HTML {
92
92
  + '<meta property="og:title" '
93
93
  + `content="${cref(this.title())}">\n`
94
94
  + '<meta property="og:image" content="'
95
- + this._req.fullUrl(fixpath(this._.icon, req.baseUrl))
95
+ + this._req.fullUrl(fixpath(this._.icon))
96
96
  + '">\n';
97
97
 
98
98
  const meta = this._.meta.map(attr=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kobalab/liulian",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "Node.jsで動作するWebサイト作成ツール",
5
5
  "publishConfig": {
6
6
  "access": "public"