blacksmith-cli 0.1.1 → 0.1.3
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": "blacksmith-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Fullstack Django + React framework — one command, one codebase, one mental model",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
"build": "tsup",
|
|
15
15
|
"dev": "tsup --watch",
|
|
16
16
|
"start": "node dist/index.js",
|
|
17
|
+
"test": "vitest run",
|
|
18
|
+
"test:watch": "vitest",
|
|
17
19
|
"prepare": "npm run build"
|
|
18
20
|
},
|
|
19
21
|
"files": [
|
|
@@ -46,6 +48,7 @@
|
|
|
46
48
|
"@types/node": "^22.15.0",
|
|
47
49
|
"@types/pluralize": "^0.0.33",
|
|
48
50
|
"tsup": "^8.4.0",
|
|
49
|
-
"typescript": "~5.9.3"
|
|
51
|
+
"typescript": "~5.9.3",
|
|
52
|
+
"vitest": "^4.0.18"
|
|
50
53
|
}
|
|
51
54
|
}
|
|
@@ -11,7 +11,7 @@ export default function DashboardPage() {
|
|
|
11
11
|
<Stack gap={8}>
|
|
12
12
|
<WelcomeHeader displayName={user?.displayName || user?.email || 'there'} />
|
|
13
13
|
<Divider />
|
|
14
|
-
<Grid columns
|
|
14
|
+
<Grid columns=\{{ base: 1, sm: 2, lg: 3 }} gap={4}>
|
|
15
15
|
<QuickStartCard />
|
|
16
16
|
<BackendCard />
|
|
17
17
|
<FrontendCard />
|
|
@@ -61,7 +61,7 @@ export function FeaturesGrid() {
|
|
|
61
61
|
A batteries-included stack so you can focus on your product.
|
|
62
62
|
</Text>
|
|
63
63
|
</Stack>
|
|
64
|
-
<Grid columns
|
|
64
|
+
<Grid columns=\{{ base: 1, sm: 2, lg: 3 }} gap={4}>
|
|
65
65
|
{features.map((feature) => (
|
|
66
66
|
<Card key={feature.title} className="group transition-colors hover:border-primary/50">
|
|
67
67
|
<CardHeader className="pb-3">
|
|
@@ -63,7 +63,7 @@ export function GettingStarted() {
|
|
|
63
63
|
Everything you need to go from scaffold to production.
|
|
64
64
|
</Text>
|
|
65
65
|
</Stack>
|
|
66
|
-
<Grid columns
|
|
66
|
+
<Grid columns=\{{ base: 1, md: 3 }} gap={4}>
|
|
67
67
|
{steps.map((step, index) => (
|
|
68
68
|
<Card key={step.command}>
|
|
69
69
|
<CardHeader className="pb-3">
|