genie-setup 1.0.5 → 1.0.6

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/index.js +4 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -63,7 +63,10 @@ process.chdir(projectPath);
63
63
 
64
64
  run('pnpm install');
65
65
 
66
- // Link the CLI globally so the 'genie' command works everywhere
66
+ // ✨ THE MISSING MAGIC: Compile the code before linking!
67
+ console.log(`\nšŸ—ļø Building GENIE Core...`);
68
+ run('pnpm run build');
69
+
67
70
  console.log(`\nšŸ”— Linking GENIE CLI...`);
68
71
  run('npm link');
69
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genie-setup",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Universal installer for GENIE",
5
5
  "main": "index.js",
6
6
  "bin": {