create-fluxstack 1.0.9 ā 1.0.10
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/create-fluxstack.ts +5 -5
- package/package.json +1 -1
package/create-fluxstack.ts
CHANGED
|
@@ -43,7 +43,7 @@ program
|
|
|
43
43
|
process.exit(1)
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
console.log(chalk.cyan(
|
|
46
|
+
console.log(chalk.cyan(`\nš Creating FluxStack project: ${chalk.bold(projectName)}`))
|
|
47
47
|
console.log(chalk.gray(`š Location: ${projectPath}`))
|
|
48
48
|
|
|
49
49
|
// Create project directory
|
|
@@ -230,15 +230,15 @@ Built with ā¤ļø using FluxStack
|
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
// Success message
|
|
233
|
-
console.log(chalk.green('
|
|
234
|
-
console.log(chalk.cyan('
|
|
233
|
+
console.log(chalk.green('\nš Project created successfully!'))
|
|
234
|
+
console.log(chalk.cyan('\nNext steps:'))
|
|
235
235
|
console.log(chalk.white(` cd ${projectName}`))
|
|
236
236
|
if (!options.install) {
|
|
237
237
|
console.log(chalk.white(` bun install`))
|
|
238
238
|
}
|
|
239
239
|
console.log(chalk.white(` bun run dev`))
|
|
240
|
-
console.log(chalk.magenta('
|
|
241
|
-
console.log(chalk.gray('
|
|
240
|
+
console.log(chalk.magenta('\nHappy coding with the divine Bun runtime! ā”š„'))
|
|
241
|
+
console.log(chalk.gray('\nVisit http://localhost:3000 when ready!'))
|
|
242
242
|
|
|
243
243
|
} catch (error) {
|
|
244
244
|
spinner.fail('ā Failed to create project')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fluxstack",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "ā” Modern full-stack TypeScript framework with Elysia + React + Bun",
|
|
5
5
|
"keywords": ["framework", "full-stack", "typescript", "elysia", "react", "bun", "vite"],
|
|
6
6
|
"author": "FluxStack Team",
|