npms-exam-kit 3.0.3 → 3.0.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/bin/exam-kit.js +6 -0
- package/package.json +1 -1
package/bin/exam-kit.js
CHANGED
|
@@ -532,6 +532,12 @@ async function main(){
|
|
|
532
532
|
// ── INSTALL ──
|
|
533
533
|
log(chalk.bold(`\n Installing ${project} → ${targetDir} ...`));
|
|
534
534
|
|
|
535
|
+
// DEBUG: show source paths
|
|
536
|
+
log(chalk.dim(` Script: ${import.meta.url}`));
|
|
537
|
+
log(chalk.dim(` Projects dir: ${PROJECTS_DIR}`));
|
|
538
|
+
log(chalk.dim(` Source: ${srcDir}`));
|
|
539
|
+
log(chalk.dim(` Source contents: ${inDir(srcDir).join(', ')}`));
|
|
540
|
+
|
|
535
541
|
try{
|
|
536
542
|
// Copy files first (instant — no spinner needed)
|
|
537
543
|
const entries=readdirSync(srcDir);
|