create-meridian-app 0.1.21 → 0.1.22

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.
@@ -573,6 +573,7 @@ async function main() {
573
573
  await seedStatuses(siteProject.id)
574
574
  const siteSprint = await sprintService.createSprint({
575
575
  project_id: siteProject.id,
576
+ workspace_id: acme.id,
576
577
  name: "Sprint 1",
577
578
  start_date: now,
578
579
  end_date: future(14),
@@ -581,6 +582,7 @@ async function main() {
581
582
 
582
583
  const siteHero = await issueService.createIssueInProject({
583
584
  project_id: siteProject.id,
585
+ workspace_id: acme.id,
584
586
  title: "Redesign homepage hero section",
585
587
  type: "feature",
586
588
  priority: "high",
@@ -589,6 +591,7 @@ async function main() {
589
591
  })
590
592
  await issueService.createIssueInProject({
591
593
  project_id: siteProject.id,
594
+ workspace_id: acme.id,
592
595
  title: "Design hero animation",
593
596
  type: "task",
594
597
  priority: "medium",
@@ -597,6 +600,7 @@ async function main() {
597
600
  })
598
601
  await issueService.createIssueInProject({
599
602
  project_id: siteProject.id,
603
+ workspace_id: acme.id,
600
604
  title: "Write hero copy",
601
605
  type: "task",
602
606
  priority: "low",
@@ -605,6 +609,7 @@ async function main() {
605
609
  })
606
610
  await issueService.createIssueInProject({
607
611
  project_id: siteProject.id,
612
+ workspace_id: acme.id,
608
613
  title: "Fix broken navigation links",
609
614
  type: "bug",
610
615
  priority: "urgent",
@@ -612,6 +617,7 @@ async function main() {
612
617
  })
613
618
  await issueService.createIssueInProject({
614
619
  project_id: siteProject.id,
620
+ workspace_id: acme.id,
615
621
  title: "Implement contact form",
616
622
  type: "feature",
617
623
  priority: "medium",
@@ -619,6 +625,7 @@ async function main() {
619
625
  })
620
626
  await issueService.createIssueInProject({
621
627
  project_id: siteProject.id,
628
+ workspace_id: acme.id,
622
629
  title: "Optimize images for web",
623
630
  type: "task",
624
631
  priority: "low",
@@ -626,6 +633,7 @@ async function main() {
626
633
  })
627
634
  await issueService.createIssueInProject({
628
635
  project_id: siteProject.id,
636
+ workspace_id: acme.id,
629
637
  title: "Add SEO meta tags",
630
638
  type: "task",
631
639
  priority: "medium",
@@ -633,6 +641,7 @@ async function main() {
633
641
  })
634
642
  await issueService.createIssueInProject({
635
643
  project_id: siteProject.id,
644
+ workspace_id: acme.id,
636
645
  title: "Set up Google Analytics",
637
646
  type: "task",
638
647
  priority: "high",
@@ -652,6 +661,7 @@ async function main() {
652
661
  await seedStatuses(appProject.id)
653
662
  const appSprint = await sprintService.createSprint({
654
663
  project_id: appProject.id,
664
+ workspace_id: acme.id,
655
665
  name: "Sprint 1",
656
666
  start_date: now,
657
667
  end_date: future(14),
@@ -660,6 +670,7 @@ async function main() {
660
670
 
661
671
  const appPush = await issueService.createIssueInProject({
662
672
  project_id: appProject.id,
673
+ workspace_id: acme.id,
663
674
  title: "Implement push notifications",
664
675
  type: "feature",
665
676
  priority: "high",
@@ -668,6 +679,7 @@ async function main() {
668
679
  })
669
680
  await issueService.createIssueInProject({
670
681
  project_id: appProject.id,
682
+ workspace_id: acme.id,
671
683
  title: "iOS push setup",
672
684
  type: "task",
673
685
  priority: "medium",
@@ -676,6 +688,7 @@ async function main() {
676
688
  })
677
689
  await issueService.createIssueInProject({
678
690
  project_id: appProject.id,
691
+ workspace_id: acme.id,
679
692
  title: "Android push setup",
680
693
  type: "task",
681
694
  priority: "medium",
@@ -684,6 +697,7 @@ async function main() {
684
697
  })
685
698
  const appCrash = await issueService.createIssueInProject({
686
699
  project_id: appProject.id,
700
+ workspace_id: acme.id,
687
701
  title: "Fix crash on login screen",
688
702
  type: "bug",
689
703
  priority: "urgent",
@@ -691,6 +705,7 @@ async function main() {
691
705
  })
692
706
  await issueService.createIssueInProject({
693
707
  project_id: appProject.id,
708
+ workspace_id: acme.id,
694
709
  title: "Add dark mode support",
695
710
  type: "feature",
696
711
  priority: "medium",
@@ -698,6 +713,7 @@ async function main() {
698
713
  })
699
714
  await issueService.createIssueInProject({
700
715
  project_id: appProject.id,
716
+ workspace_id: acme.id,
701
717
  title: "Improve app launch time",
702
718
  type: "task",
703
719
  priority: "high",
@@ -705,6 +721,7 @@ async function main() {
705
721
  })
706
722
  await issueService.createIssueInProject({
707
723
  project_id: appProject.id,
724
+ workspace_id: acme.id,
708
725
  title: "Write onboarding flow",
709
726
  type: "story",
710
727
  priority: "medium",
@@ -712,6 +729,7 @@ async function main() {
712
729
  })
713
730
  await issueService.createIssueInProject({
714
731
  project_id: appProject.id,
732
+ workspace_id: acme.id,
715
733
  title: "Accessibility audit",
716
734
  type: "task",
717
735
  priority: "low",
@@ -735,6 +753,7 @@ async function main() {
735
753
  await seedStatuses(roadmapProject.id)
736
754
  const roadmapSprint = await sprintService.createSprint({
737
755
  project_id: roadmapProject.id,
756
+ workspace_id: starlight.id,
738
757
  name: "Sprint 1",
739
758
  start_date: now,
740
759
  end_date: future(21),
@@ -743,6 +762,7 @@ async function main() {
743
762
 
744
763
  const roadmapOkr = await issueService.createIssueInProject({
745
764
  project_id: roadmapProject.id,
765
+ workspace_id: starlight.id,
746
766
  title: "Define Q2 OKRs",
747
767
  type: "epic",
748
768
  priority: "high",
@@ -751,6 +771,7 @@ async function main() {
751
771
  })
752
772
  await issueService.createIssueInProject({
753
773
  project_id: roadmapProject.id,
774
+ workspace_id: starlight.id,
754
775
  title: "Engineering OKRs",
755
776
  type: "task",
756
777
  priority: "high",
@@ -759,6 +780,7 @@ async function main() {
759
780
  })
760
781
  await issueService.createIssueInProject({
761
782
  project_id: roadmapProject.id,
783
+ workspace_id: starlight.id,
762
784
  title: "Product OKRs",
763
785
  type: "task",
764
786
  priority: "high",
@@ -767,6 +789,7 @@ async function main() {
767
789
  })
768
790
  await issueService.createIssueInProject({
769
791
  project_id: roadmapProject.id,
792
+ workspace_id: starlight.id,
770
793
  title: "User research interviews",
771
794
  type: "task",
772
795
  priority: "medium",
@@ -774,6 +797,7 @@ async function main() {
774
797
  })
775
798
  await issueService.createIssueInProject({
776
799
  project_id: roadmapProject.id,
800
+ workspace_id: starlight.id,
777
801
  title: "Competitive analysis",
778
802
  type: "task",
779
803
  priority: "medium",
@@ -781,6 +805,7 @@ async function main() {
781
805
  })
782
806
  await issueService.createIssueInProject({
783
807
  project_id: roadmapProject.id,
808
+ workspace_id: starlight.id,
784
809
  title: "Draft product spec v1",
785
810
  type: "feature",
786
811
  priority: "high",
@@ -788,6 +813,7 @@ async function main() {
788
813
  })
789
814
  await issueService.createIssueInProject({
790
815
  project_id: roadmapProject.id,
816
+ workspace_id: starlight.id,
791
817
  title: "Roadmap review with stakeholders",
792
818
  type: "task",
793
819
  priority: "medium",
@@ -795,6 +821,7 @@ async function main() {
795
821
  })
796
822
  await issueService.createIssueInProject({
797
823
  project_id: roadmapProject.id,
824
+ workspace_id: starlight.id,
798
825
  title: "Prioritize feature backlog",
799
826
  type: "task",
800
827
  priority: "low",
@@ -814,6 +841,7 @@ async function main() {
814
841
  await seedStatuses(mktProject.id)
815
842
  const mktSprint = await sprintService.createSprint({
816
843
  project_id: mktProject.id,
844
+ workspace_id: starlight.id,
817
845
  name: "Sprint 1",
818
846
  start_date: now,
819
847
  end_date: future(7),
@@ -822,6 +850,7 @@ async function main() {
822
850
 
823
851
  const mktPricing = await issueService.createIssueInProject({
824
852
  project_id: mktProject.id,
853
+ workspace_id: starlight.id,
825
854
  title: "Redesign pricing page",
826
855
  type: "feature",
827
856
  priority: "high",
@@ -830,6 +859,7 @@ async function main() {
830
859
  })
831
860
  await issueService.createIssueInProject({
832
861
  project_id: mktProject.id,
862
+ workspace_id: starlight.id,
833
863
  title: "Update pricing copy",
834
864
  type: "task",
835
865
  priority: "medium",
@@ -838,6 +868,7 @@ async function main() {
838
868
  })
839
869
  await issueService.createIssueInProject({
840
870
  project_id: mktProject.id,
871
+ workspace_id: starlight.id,
841
872
  title: "A/B test variants",
842
873
  type: "task",
843
874
  priority: "low",
@@ -846,6 +877,7 @@ async function main() {
846
877
  })
847
878
  await issueService.createIssueInProject({
848
879
  project_id: mktProject.id,
880
+ workspace_id: starlight.id,
849
881
  title: "Fix mobile layout issues",
850
882
  type: "bug",
851
883
  priority: "urgent",
@@ -853,6 +885,7 @@ async function main() {
853
885
  })
854
886
  await issueService.createIssueInProject({
855
887
  project_id: mktProject.id,
888
+ workspace_id: starlight.id,
856
889
  title: "Improve page load score",
857
890
  type: "task",
858
891
  priority: "high",
@@ -860,6 +893,7 @@ async function main() {
860
893
  })
861
894
  await issueService.createIssueInProject({
862
895
  project_id: mktProject.id,
896
+ workspace_id: starlight.id,
863
897
  title: "Add blog section",
864
898
  type: "feature",
865
899
  priority: "medium",
@@ -867,6 +901,7 @@ async function main() {
867
901
  })
868
902
  await issueService.createIssueInProject({
869
903
  project_id: mktProject.id,
904
+ workspace_id: starlight.id,
870
905
  title: "Set up Hotjar",
871
906
  type: "task",
872
907
  priority: "low",
@@ -874,6 +909,7 @@ async function main() {
874
909
  })
875
910
  await issueService.createIssueInProject({
876
911
  project_id: mktProject.id,
912
+ workspace_id: starlight.id,
877
913
  title: "Write 3 launch blog posts",
878
914
  type: "task",
879
915
  priority: "medium",
@@ -897,6 +933,7 @@ async function main() {
897
933
  await seedStatuses(infraProject.id)
898
934
  const infraSprint = await sprintService.createSprint({
899
935
  project_id: infraProject.id,
936
+ workspace_id: devops.id,
900
937
  name: "Sprint 1",
901
938
  start_date: now,
902
939
  end_date: future(14),
@@ -905,6 +942,7 @@ async function main() {
905
942
 
906
943
  const infraEks = await issueService.createIssueInProject({
907
944
  project_id: infraProject.id,
945
+ workspace_id: devops.id,
908
946
  title: "Migrate to EKS",
909
947
  type: "epic",
910
948
  priority: "high",
@@ -913,6 +951,7 @@ async function main() {
913
951
  })
914
952
  await issueService.createIssueInProject({
915
953
  project_id: infraProject.id,
954
+ workspace_id: devops.id,
916
955
  title: "Set up EKS cluster",
917
956
  type: "task",
918
957
  priority: "high",
@@ -921,6 +960,7 @@ async function main() {
921
960
  })
922
961
  await issueService.createIssueInProject({
923
962
  project_id: infraProject.id,
963
+ workspace_id: devops.id,
924
964
  title: "Migrate services",
925
965
  type: "task",
926
966
  priority: "high",
@@ -929,6 +969,7 @@ async function main() {
929
969
  })
930
970
  await issueService.createIssueInProject({
931
971
  project_id: infraProject.id,
972
+ workspace_id: devops.id,
932
973
  title: "Implement secrets rotation",
933
974
  type: "feature",
934
975
  priority: "urgent",
@@ -936,6 +977,7 @@ async function main() {
936
977
  })
937
978
  await issueService.createIssueInProject({
938
979
  project_id: infraProject.id,
980
+ workspace_id: devops.id,
939
981
  title: "Add CloudWatch dashboards",
940
982
  type: "task",
941
983
  priority: "medium",
@@ -943,6 +985,7 @@ async function main() {
943
985
  })
944
986
  await issueService.createIssueInProject({
945
987
  project_id: infraProject.id,
988
+ workspace_id: devops.id,
946
989
  title: "Reduce AWS costs by 20%",
947
990
  type: "task",
948
991
  priority: "high",
@@ -950,6 +993,7 @@ async function main() {
950
993
  })
951
994
  await issueService.createIssueInProject({
952
995
  project_id: infraProject.id,
996
+ workspace_id: devops.id,
953
997
  title: "Set up Datadog APM",
954
998
  type: "feature",
955
999
  priority: "medium",
@@ -958,6 +1002,7 @@ async function main() {
958
1002
  })
959
1003
  await issueService.createIssueInProject({
960
1004
  project_id: infraProject.id,
1005
+ workspace_id: devops.id,
961
1006
  title: "Document runbooks",
962
1007
  type: "task",
963
1008
  priority: "low",
@@ -976,6 +1021,7 @@ async function main() {
976
1021
  await seedStatuses(cicdProject.id)
977
1022
  const cicdSprint = await sprintService.createSprint({
978
1023
  project_id: cicdProject.id,
1024
+ workspace_id: devops.id,
979
1025
  name: "Sprint 1",
980
1026
  start_date: now,
981
1027
  end_date: future(14),
@@ -984,6 +1030,7 @@ async function main() {
984
1030
 
985
1031
  const cicdMatrix = await issueService.createIssueInProject({
986
1032
  project_id: cicdProject.id,
1033
+ workspace_id: devops.id,
987
1034
  title: "Add matrix builds for Node 18/20",
988
1035
  type: "feature",
989
1036
  priority: "high",
@@ -992,6 +1039,7 @@ async function main() {
992
1039
  })
993
1040
  await issueService.createIssueInProject({
994
1041
  project_id: cicdProject.id,
1042
+ workspace_id: devops.id,
995
1043
  title: "Node 18 build config",
996
1044
  type: "task",
997
1045
  priority: "medium",
@@ -1000,6 +1048,7 @@ async function main() {
1000
1048
  })
1001
1049
  await issueService.createIssueInProject({
1002
1050
  project_id: cicdProject.id,
1051
+ workspace_id: devops.id,
1003
1052
  title: "Node 20 build config",
1004
1053
  type: "task",
1005
1054
  priority: "medium",
@@ -1008,6 +1057,7 @@ async function main() {
1008
1057
  })
1009
1058
  await issueService.createIssueInProject({
1010
1059
  project_id: cicdProject.id,
1060
+ workspace_id: devops.id,
1011
1061
  title: "Flaky test investigation",
1012
1062
  type: "bug",
1013
1063
  priority: "high",
@@ -1015,6 +1065,7 @@ async function main() {
1015
1065
  })
1016
1066
  await issueService.createIssueInProject({
1017
1067
  project_id: cicdProject.id,
1068
+ workspace_id: devops.id,
1018
1069
  title: "Add deploy preview environments",
1019
1070
  type: "feature",
1020
1071
  priority: "medium",
@@ -1022,6 +1073,7 @@ async function main() {
1022
1073
  })
1023
1074
  await issueService.createIssueInProject({
1024
1075
  project_id: cicdProject.id,
1076
+ workspace_id: devops.id,
1025
1077
  title: "Cache npm dependencies",
1026
1078
  type: "task",
1027
1079
  priority: "medium",
@@ -1030,6 +1082,7 @@ async function main() {
1030
1082
  })
1031
1083
  await issueService.createIssueInProject({
1032
1084
  project_id: cicdProject.id,
1085
+ workspace_id: devops.id,
1033
1086
  title: "Rollback automation",
1034
1087
  type: "feature",
1035
1088
  priority: "high",
@@ -1037,6 +1090,7 @@ async function main() {
1037
1090
  })
1038
1091
  await issueService.createIssueInProject({
1039
1092
  project_id: cicdProject.id,
1093
+ workspace_id: devops.id,
1040
1094
  title: "Pipeline documentation",
1041
1095
  type: "task",
1042
1096
  priority: "low",
package/dist/cli.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  toKebabCase,
15
15
  toPascalCase,
16
16
  writeFile
17
- } from "./chunk-Y6GFRW6X.js";
17
+ } from "./chunk-J4ZLDYH3.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-Y6GFRW6X.js";
4
+ } from "./chunk-J4ZLDYH3.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.21",
3
+ "version": "0.1.22",
4
4
  "description": "Create a new Meridian project or manage an existing one",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",