create-meridian-app 0.1.19 → 0.1.21

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.
@@ -542,12 +542,12 @@ async function main() {
542
542
 
543
543
  async function seedStatuses(projectId: string) {
544
544
  const defaults = [
545
- { name: "Backlog", color: "#94a3b8", position: 0 },
546
- { name: "Todo", color: "#64748b", position: 1 },
547
- { name: "In Progress", color: "#6366f1", position: 2 },
548
- { name: "In Review", color: "#f59e0b", position: 3 },
549
- { name: "Done", color: "#10b981", position: 4 },
550
- { name: "Cancelled", color: "#ef4444", position: 5 },
545
+ { name: "Backlog", key: "backlog", color: "#94a3b8", category: "backlog", position: 0 },
546
+ { name: "Todo", key: "todo", color: "#64748b", category: "unstarted", position: 1 },
547
+ { name: "In Progress", key: "in_progress", color: "#6366f1", category: "started", position: 2 },
548
+ { name: "In Review", key: "in_review", color: "#f59e0b", category: "started", position: 3 },
549
+ { name: "Done", key: "done", color: "#10b981", category: "completed", position: 4 },
550
+ { name: "Cancelled", key: "cancelled", color: "#9ca3af", category: "cancelled", position: 5 },
551
551
  ]
552
552
  for (const s of defaults) {
553
553
  await projectService.createProjectStatus({ project_id: projectId, ...s })
package/dist/cli.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  toKebabCase,
15
15
  toPascalCase,
16
16
  writeFile
17
- } from "./chunk-LNDCRXEG.js";
17
+ } from "./chunk-Y6GFRW6X.js";
18
18
 
19
19
  // src/cli.ts
20
20
  import { Command } from "commander";
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runNew
4
- } from "./chunk-LNDCRXEG.js";
4
+ } from "./chunk-Y6GFRW6X.js";
5
5
 
6
6
  // src/index.ts
7
7
  var projectName = process.argv[2];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-meridian-app",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "Create a new Meridian project or manage an existing one",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",