create-fuzionx 0.1.67 → 0.1.70

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fuzionx",
3
- "version": "0.1.67",
3
+ "version": "0.1.70",
4
4
  "description": "Create a new FuzionX application — npx create-fuzionx my-app",
5
5
  "type": "module",
6
6
  "bin": {
@@ -9,8 +9,8 @@
9
9
  "test": "vitest run"
10
10
  },
11
11
  "dependencies": {
12
- "@fuzionx/framework": "^0.1.67",
13
- "@fuzionx/client": "^0.1.67",
12
+ "@fuzionx/framework": "^0.1.70",
13
+ "@fuzionx/client": "^0.1.70",
14
14
  "joi": "^18.1.1"
15
15
  },
16
16
  "devDependencies": {
@@ -4,7 +4,7 @@
4
4
  "description": "Vue.js 3 SPA + Tera SSR 하이브리드. WASM 암호화 통신.",
5
5
  "features": ["auth", "board", "i18n", "asp", "wasm"],
6
6
  "dependencies": {
7
- "@fuzionx/client": "^0.1.67"
7
+ "@fuzionx/client": "^0.1.70"
8
8
  },
9
9
  "devDependencies": {},
10
10
  "spaDevDependencies": {
@@ -9,7 +9,7 @@
9
9
  "preview": "vite preview"
10
10
  },
11
11
  "dependencies": {
12
- "@fuzionx/player": "^0.1.67",
12
+ "@fuzionx/player": "^0.1.70",
13
13
  "pinia": "^3.0.4",
14
14
  "vue": "^3.5.0",
15
15
  "vue-router": "^4.5.0"
@@ -1,18 +0,0 @@
1
- import { Job } from '@fuzionx/framework';
2
-
3
- /** 매 5분마다 만료 세션 정리 (스케줄러 테스트) */
4
- export default class CleanupJob extends Job {
5
- static schedule = 'every:5m';
6
- static timeout = 10000;
7
- static enabled = true;
8
-
9
- async handle() {
10
- const cleaned = Math.floor(Math.random() * 10);
11
- console.log(`[CleanupJob] ${cleaned}개 만료 세션 정리 완료`);
12
- return { cleaned };
13
- }
14
-
15
- async onError(error) {
16
- console.error('[CleanupJob] 실패:', error.message);
17
- }
18
- }