@l4yercak3/cli 1.2.19 → 1.2.20

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": "@l4yercak3/cli",
3
- "version": "1.2.19",
3
+ "version": "1.2.20",
4
4
  "description": "Icing on the L4yercak3 - The sweet finishing touch for your Layer Cake integration",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -71,6 +71,14 @@ class QuickStartGenerator {
71
71
  const isMobile = this.isMobileFramework(frameworkType);
72
72
  const isNextJs = this.isNextJs(frameworkType);
73
73
 
74
+ // Debug logging
75
+ if (process.env.L4YERCAK3_DEBUG) {
76
+ console.log('\n[DEBUG] QuickStart Generator:');
77
+ console.log(` frameworkType: "${frameworkType}"`);
78
+ console.log(` isMobile: ${isMobile}`);
79
+ console.log(` isNextJs: ${isNextJs}`);
80
+ }
81
+
74
82
  // 1. Generate the typed API client package
75
83
  const apiOnlyResults = await apiOnlyGenerator.generate(options);
76
84
  results.apiClient = apiOnlyResults.client;