create-nene 0.3.2 → 0.3.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": "create-nene",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Create a new nene.js project with a single command",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,7 +12,7 @@ interface HealthStatus {
12
12
  type ServiceStatus = 'checking' | 'active' | 'inactive';
13
13
 
14
14
  const EXAMPLE_PROMPT =
15
- 'Turn this nene.js project into a blog with real-time comments. Use a light theme with modern fonts. Skip auth for now (add it as a TODO), and let anyone write posts and comments.';
15
+ 'Turn this nene.js project into a blog with real-time comments. Use a light theme with modern fonts. Skip auth for now (add it as a kanban TODO), and let anyone write posts and comments.';
16
16
 
17
17
  function StatusBadge({ status }: { status: ServiceStatus }) {
18
18
  if (status === 'checking') {