create-solostack 1.3.3 → 1.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-solostack",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "The complete SaaS boilerplate for indie hackers - Next.js 15 with auth, payments, database, and email",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -32,7 +32,7 @@ export async function main() {
32
32
  const orange = chalk.hex('#FF8C00');
33
33
  const orangeBright = chalk.hex('#FFA500');
34
34
  const orangeDim = chalk.hex('#FF7F00');
35
-
35
+
36
36
  console.log(orange(`
37
37
  ╔════════════════════════════════════════════════════════════════╗
38
38
  ║ ║
@@ -52,8 +52,8 @@ export async function main() {
52
52
  ║ ║
53
53
  ╚════════════════════════════════════════════════════════════════╝
54
54
  `));
55
-
56
- console.log(chalk.gray(` Version ${orangeBright('1.3.3')} • Built by ${orangeBright('Danish Akhtar')} • ${orangeBright('github.com/danish296')}\n`));
55
+
56
+ console.log(chalk.gray(` Version ${orangeBright('1.3.4')} • Built by ${orangeBright('Danish Akhtar')} • ${orangeBright('github.com/danish296')}\n`));
57
57
 
58
58
  // Parse command line arguments
59
59
  program
@@ -68,7 +68,7 @@ export async function validateLicense(licenseKey) {
68
68
  */
69
69
  export function isLicenseKeyFormat(key) {
70
70
  if (!key || typeof key !== 'string') return false;
71
- return /^sk_live_[A-Za-z0-9]{32,}$/.test(key);
71
+ return /^sk_live_[A-Za-z0-9]{1,}$/.test(key);
72
72
  }
73
73
 
74
74
  /**