create-fuzionx 0.1.29 → 0.1.30

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/fx.js CHANGED
@@ -48,6 +48,7 @@ if (existsSync(localBin) || existsSync(localCli)) {
48
48
  fx new <name> 새 프로젝트 스캐폴딩
49
49
 
50
50
  프로젝트 내 명령어 (@fuzionx/framework 필요):
51
+ fx make:app <name> 새 앱 디렉토리 생성
51
52
  fx make:controller <Name> 컨트롤러 생성
52
53
  fx make:model <Name> 모델 생성
53
54
  fx make:service <Name> 서비스 생성
@@ -57,6 +58,8 @@ if (existsSync(localBin) || existsSync(localCli)) {
57
58
  fx make:ws <Name> WsHandler 생성
58
59
  fx make:event <Name> 이벤트 핸들러 생성
59
60
  fx dev 개발 서버 (--watch)
61
+ fx stop 서버 종료 (graceful)
62
+ fx restart 서버 재시작 (graceful)
60
63
  fx test 테스트 실행
61
64
  fx routes 라우트 테이블
62
65
  fx config 설정 출력
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fuzionx",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "Create a new FuzionX application — npx create-fuzionx my-app",
5
5
  "type": "module",
6
6
  "bin": {
@@ -2,3 +2,4 @@
2
2
  node_modules/
3
3
  storage/logs/
4
4
  storage/uploads/
5
+ fuzionx.pid
@@ -7,7 +7,7 @@
7
7
  "test": "vitest run"
8
8
  },
9
9
  "dependencies": {
10
- "@fuzionx/framework": "^0.1.29",
10
+ "@fuzionx/framework": "^0.1.30",
11
11
  "joi": "^18.1.1"
12
12
  },
13
13
  "devDependencies": {