@jsonpages/cli 3.0.4 → 3.0.5

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/package.json +1 -1
  2. package/src/index.js +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsonpages/cli",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "description": "JsonPages CLI - Sovereign Projection Engine",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -142,7 +142,7 @@ program
142
142
  'lucide-react', 'radix-ui',
143
143
  'tailwind-merge', 'clsx',
144
144
  'file-saver', 'jszip',
145
- '@jsonpages/core' // Scarica dal registry pubblico
145
+ '@jsonpages/core@^1.0.0',
146
146
  ];
147
147
 
148
148
  const devDeps = [
@@ -153,9 +153,10 @@ program
153
153
 
154
154
  await execa(npmCmd, ['install', ...deps], { cwd: targetDir });
155
155
  await execa(npmCmd, ['install', '-D', ...devDeps], { cwd: targetDir });
156
-
156
+
157
157
  spinner.succeed(chalk.green.bold('✨ Tenant Ready!'));
158
158
 
159
+ console.log(chalk.gray(' (Ensure @jsonpages/core is published: npm view @jsonpages/core)'));
159
160
  console.log(`\n${chalk.white.bgBlue(' NEXT STEPS ')}`);
160
161
  console.log(` ${chalk.cyan(`cd ${name}`)}`);
161
162
  console.log(` ${chalk.cyan(`npm run dev`)} <- Start development`);