@ninebone/mcp 1.0.10 → 1.0.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/package.json +1 -1
- package/src/core/init.js +1 -11
package/package.json
CHANGED
package/src/core/init.js
CHANGED
|
@@ -124,17 +124,6 @@ function createEcosystemFile() {
|
|
|
124
124
|
console.log(' └⚙️ ecosystem.config.js 생성 완료 (PM2 실행용)');
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
// 2. runInit 함수 내부에서 createPromptFiles() 실행 후 바로 호출하세요.
|
|
128
|
-
export async function runInit() {
|
|
129
|
-
// ...
|
|
130
|
-
if (success) {
|
|
131
|
-
createPromptFiles();
|
|
132
|
-
createEcosystemFile(); // <--- 여기 추가!
|
|
133
|
-
createEcosystemFile();
|
|
134
|
-
console.log('\n✅ 모든 초기화 작업이 완료되었습니다.');
|
|
135
|
-
// ...
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
127
|
/**
|
|
139
128
|
* 메인 실행 함수
|
|
140
129
|
*/
|
|
@@ -150,6 +139,7 @@ export async function runInit() {
|
|
|
150
139
|
const success = await createEnvFile(rl);
|
|
151
140
|
if (success) {
|
|
152
141
|
createPromptFiles();
|
|
142
|
+
createEcosystemFile();
|
|
153
143
|
console.log('\n✅ 모든 초기화 작업이 완료되었습니다.');
|
|
154
144
|
|
|
155
145
|
// MCP 환경에 특화된 안내 문구 추가
|