@kobalab/liulian 1.0.0 → 1.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/ChangeLog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### v1.0.1 / 2022-04-10
2
+
3
+ - paiga モジュールのMサイズの指定の誤りを修正
4
+
1
5
  # v1.0.0 / 2022-04-09
2
6
 
3
7
  - 正式バージョンリリース
@@ -114,7 +114,7 @@ module.exports = class Paiga {
114
114
  let w = 24, h = 34;
115
115
  if (! param) { w = 24; h = 34 }
116
116
  else if (param == 'L') { w = 24; h = 34 }
117
- else if (param == 'M') { w = 19; h = 24 }
117
+ else if (param == 'M') { w = 19; h = 26 }
118
118
  else if (param == 'S') { w = 16; h = 23 }
119
119
  else if (param.match(/^\d+x\d+$/)) {
120
120
  [ w, h ] = param.split(/x/);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kobalab/liulian",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Node.jsで動作するWebサイト作成ツール",
5
5
  "publishConfig": {
6
6
  "access": "public"