create-mendix-widget-gleam 1.1.3 → 1.1.4
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/index.mjs +4 -4
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -117,10 +117,10 @@ export async function main(args) {
|
|
|
117
117
|
console.error(` ${CYAN}gleam build --target javascript${RESET}\n`);
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
// 의존성 설치
|
|
121
|
-
console.log(`\n${BOLD}의존성 설치
|
|
120
|
+
// 의존성 설치 (사용자가 선택한 패키지 매니저 사용)
|
|
121
|
+
console.log(`\n${BOLD}의존성 설치 중... (${pm})${RESET}\n`);
|
|
122
122
|
try {
|
|
123
|
-
execSync(
|
|
123
|
+
execSync(pmConfig.install, {
|
|
124
124
|
cwd: targetDir,
|
|
125
125
|
stdio: "inherit",
|
|
126
126
|
});
|
|
@@ -129,7 +129,7 @@ export async function main(args) {
|
|
|
129
129
|
console.error(
|
|
130
130
|
`\n${YELLOW}⚠ 의존성 설치 실패. 프로젝트 디렉토리에서 직접 실행하세요:${RESET}`,
|
|
131
131
|
);
|
|
132
|
-
console.error(` ${CYAN}
|
|
132
|
+
console.error(` ${CYAN}${pmConfig.install}${RESET}\n`);
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
// 프로덕션 빌드
|