@kobalab/liulian 1.1.11 → 1.1.12

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,15 @@
1
+ ### v1.1.12 / 2025-05-25
2
+
3
+ - パッケージを最新化
4
+ - mocha 9.2.0 → 11.5.0
5
+ - 脆弱性警告に対処
6
+ - @babel/helpers 7.10.4 → 7.27.1
7
+ - cookie 0.4.2 → 0.7.1
8
+ - cross-spawn 7.0.3 → 7.0.6
9
+ - nanoid 3.3.1 → (未使用)
10
+ - path-to-regexp 0.1.10 → 0.1.12
11
+ - serialize-javascript 6.0.0 → 6.0.2
12
+
1
13
  ### v1.1.11 / 2024-09-26
2
14
 
3
15
  - デフォルトのフォントを変更
package/bin/liulian.js CHANGED
@@ -28,7 +28,8 @@ const auth = require('../lib/auth/file')(
28
28
  const express = require('express');
29
29
  const store = new (require('session-file-store')(
30
30
  require('express-session')))({
31
- path: path.join(home, '/auth/session') });
31
+ path: path.join(home, '/auth/session'),
32
+ logFn: ()=>{} });
32
33
  const session = require('express-session')({
33
34
  name: 'LIULIAN',
34
35
  secret: 'keyboard cat',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kobalab/liulian",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "description": "Node.jsで動作するWebサイト作成ツール",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "homepage": "https://kobalab.net/liulian/",
29
29
  "devDependencies": {
30
- "mocha": "^9.2.0",
30
+ "mocha": "^11.5.0",
31
31
  "nyc": "^15.1.0"
32
32
  },
33
33
  "dependencies": {