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.
Files changed (2) hide show
  1. package/bin/exam-kit.js +6 -0
  2. 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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npms-exam-kit",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "NESA National Practical Exam Projects Installer - SIMS & CRPMS",
5
5
  "bin": {
6
6
  "npms-exam-kit": "bin/exam-kit.js"