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: "#
|
|
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
package/dist/index.js
CHANGED