UNPKG

@fortress-system/zero-defect-framework

Version:

Universal zero-defect development framework with 4-layer validation

30 lines (27 loc) 1.78 kB
#!/usr/bin/env node // Show message for global installs console.log('DEBUG: npm_config_global =', process.env.npm_config_global); console.log('DEBUG: All env vars:', Object.keys(process.env).filter(k => k.includes('npm'))); // For now, always show message to ensure it works // if (process.env.npm_config_global !== 'true') { // process.exit(0); // } console.log(` ┌─────────────────────────────────────────────────────────────┐ │ 🏰 Fortress-System Successfully Installed! │ │ │ │ 🚀 You are now ready to build and create with │ │ error-free coding. │ │ │ │ 📋 Next step: Run this command in your terminal: │ │ fortress init <YourProjectName> │ │ │ │ 💡 Example: │ │ fortress init myBrilliantApp │ │ cd myBrilliantApp │ │ npm install │ │ npm run dev │ │ │ │ 📖 Need help? Run: fortress --help │ └─────────────────────────────────────────────────────────────┘ `);