@fuzdev/fuz_gitops 0.58.0 → 0.59.0

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.
Files changed (93) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +15 -0
  3. package/dist/ModulesDetail.svelte +5 -4
  4. package/dist/ModulesDetail.svelte.d.ts +3 -3
  5. package/dist/ModulesDetail.svelte.d.ts.map +1 -1
  6. package/dist/ModulesNav.svelte +4 -4
  7. package/dist/ModulesNav.svelte.d.ts +3 -3
  8. package/dist/ModulesNav.svelte.d.ts.map +1 -1
  9. package/dist/ModulesPage.svelte +5 -4
  10. package/dist/ModulesPage.svelte.d.ts +3 -3
  11. package/dist/ModulesPage.svelte.d.ts.map +1 -1
  12. package/dist/PageHeader.svelte +8 -4
  13. package/dist/PageHeader.svelte.d.ts +3 -3
  14. package/dist/PageHeader.svelte.d.ts.map +1 -1
  15. package/dist/PullRequestsDetail.svelte +5 -4
  16. package/dist/PullRequestsDetail.svelte.d.ts +3 -3
  17. package/dist/PullRequestsDetail.svelte.d.ts.map +1 -1
  18. package/dist/PullRequestsPage.svelte +9 -10
  19. package/dist/PullRequestsPage.svelte.d.ts +5 -5
  20. package/dist/PullRequestsPage.svelte.d.ts.map +1 -1
  21. package/dist/ReposTable.svelte +5 -4
  22. package/dist/ReposTable.svelte.d.ts +3 -3
  23. package/dist/ReposTable.svelte.d.ts.map +1 -1
  24. package/dist/ReposTree.svelte +6 -4
  25. package/dist/ReposTree.svelte.d.ts +3 -3
  26. package/dist/ReposTree.svelte.d.ts.map +1 -1
  27. package/dist/ReposTreeNav.svelte +6 -4
  28. package/dist/ReposTreeNav.svelte.d.ts +3 -3
  29. package/dist/ReposTreeNav.svelte.d.ts.map +1 -1
  30. package/dist/TablePage.svelte +5 -4
  31. package/dist/TablePage.svelte.d.ts +3 -3
  32. package/dist/TablePage.svelte.d.ts.map +1 -1
  33. package/dist/TreeItemPage.svelte +6 -4
  34. package/dist/TreeItemPage.svelte.d.ts +3 -3
  35. package/dist/TreeItemPage.svelte.d.ts.map +1 -1
  36. package/dist/TreePage.svelte +5 -4
  37. package/dist/TreePage.svelte.d.ts +3 -3
  38. package/dist/TreePage.svelte.d.ts.map +1 -1
  39. package/dist/fetch_repo_data.d.ts +1 -1
  40. package/dist/fetch_repo_data.js +1 -1
  41. package/dist/fs_fetch_value_cache.d.ts +1 -1
  42. package/dist/fs_fetch_value_cache.js +1 -1
  43. package/dist/gitops_analyze.task.d.ts +1 -1
  44. package/dist/gitops_analyze.task.d.ts.map +1 -1
  45. package/dist/gitops_analyze.task.js +6 -5
  46. package/dist/gitops_constants.d.ts +27 -0
  47. package/dist/gitops_constants.d.ts.map +1 -0
  48. package/dist/gitops_constants.js +26 -0
  49. package/dist/gitops_plan.task.d.ts +2 -2
  50. package/dist/gitops_plan.task.d.ts.map +1 -1
  51. package/dist/gitops_plan.task.js +7 -6
  52. package/dist/gitops_publish.task.d.ts +1 -1
  53. package/dist/gitops_publish.task.d.ts.map +1 -1
  54. package/dist/gitops_publish.task.js +7 -6
  55. package/dist/gitops_run.task.d.ts +14 -0
  56. package/dist/gitops_run.task.d.ts.map +1 -0
  57. package/dist/gitops_run.task.js +173 -0
  58. package/dist/gitops_sync.task.d.ts +1 -1
  59. package/dist/gitops_sync.task.d.ts.map +1 -1
  60. package/dist/gitops_sync.task.js +6 -5
  61. package/dist/gitops_task_helpers.d.ts +7 -3
  62. package/dist/gitops_task_helpers.d.ts.map +1 -1
  63. package/dist/gitops_task_helpers.js +16 -7
  64. package/dist/gitops_validate.task.d.ts +1 -1
  65. package/dist/gitops_validate.task.d.ts.map +1 -1
  66. package/dist/gitops_validate.task.js +6 -5
  67. package/dist/local_repo.d.ts +3 -1
  68. package/dist/local_repo.d.ts.map +1 -1
  69. package/dist/local_repo.js +34 -3
  70. package/dist/multi_repo_publisher.d.ts.map +1 -1
  71. package/dist/multi_repo_publisher.js +6 -6
  72. package/dist/publishing_plan.js +4 -4
  73. package/dist/repo_ops.d.ts.map +1 -1
  74. package/dist/repo_ops.js +2 -1
  75. package/package.json +5 -5
  76. package/src/lib/fetch_repo_data.ts +1 -1
  77. package/src/lib/fs_fetch_value_cache.ts +1 -1
  78. package/src/lib/gitops_analyze.task.ts +6 -5
  79. package/src/lib/gitops_constants.ts +30 -0
  80. package/src/lib/gitops_plan.task.ts +7 -6
  81. package/src/lib/gitops_publish.task.ts +7 -6
  82. package/src/lib/gitops_run.task.ts +218 -0
  83. package/src/lib/gitops_sync.task.ts +6 -5
  84. package/src/lib/gitops_task_helpers.ts +20 -9
  85. package/src/lib/gitops_validate.task.ts +6 -5
  86. package/src/lib/local_repo.ts +45 -2
  87. package/src/lib/multi_repo_publisher.ts +11 -6
  88. package/src/lib/publishing_plan.ts +4 -4
  89. package/src/lib/repo_ops.ts +2 -1
  90. package/dist/constants.d.ts +0 -9
  91. package/dist/constants.d.ts.map +0 -1
  92. package/dist/constants.js +0 -8
  93. package/src/lib/constants.ts +0 -8
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
- The MIT License (MIT)
1
+ MIT License
2
2
 
3
- Copyright (c) Ryan Atkinson <mail@ryanatkn.com> <https://ryanatkn.com/>
3
+ Copyright (c) fuz.dev
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -71,6 +71,21 @@ See [CLAUDE.md](CLAUDE.md#architecture) for detailed documentation.
71
71
 
72
72
  ## Quick Start
73
73
 
74
+ ### Running commands across repos
75
+
76
+ ```bash
77
+ gro gitops_run "npm test" # run tests in all repos (parallel, concurrency: 5)
78
+ gro gitops_run "npm audit" --concurrency 3 # limit parallelism
79
+ gro gitops_run "git status" --format json # JSON output for scripting
80
+ ```
81
+
82
+ **Features:**
83
+
84
+ - Parallel execution with configurable concurrency (default: 5)
85
+ - Continue-on-error behavior (shows all results)
86
+ - Structured output formats (text or JSON)
87
+ - Uses lightweight repo path resolution (no full sync needed)
88
+
74
89
  ### Syncing repo metadata
75
90
 
76
91
  ```bash
@@ -6,12 +6,13 @@
6
6
  import ModulesNav from './ModulesNav.svelte';
7
7
  import type {Repo} from './repo.svelte.js';
8
8
 
9
- interface Props {
9
+ const {
10
+ repos,
11
+ nav_footer,
12
+ }: {
10
13
  repos: Array<Repo>; // TODO normalized version with cached primitives?
11
14
  nav_footer?: Snippet;
12
- }
13
-
14
- const {repos, nav_footer}: Props = $props();
15
+ } = $props();
15
16
 
16
17
  // TODO add sorting options
17
18
 
@@ -1,10 +1,10 @@
1
1
  import type { Snippet } from 'svelte';
2
2
  import type { Repo } from './repo.svelte.js';
3
- interface Props {
3
+ type $$ComponentProps = {
4
4
  repos: Array<Repo>;
5
5
  nav_footer?: Snippet;
6
- }
7
- declare const ModulesDetail: import("svelte").Component<Props, {}, "">;
6
+ };
7
+ declare const ModulesDetail: import("svelte").Component<$$ComponentProps, {}, "">;
8
8
  type ModulesDetail = ReturnType<typeof ModulesDetail>;
9
9
  export default ModulesDetail;
10
10
  //# sourceMappingURL=ModulesDetail.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ModulesDetail.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ModulesDetail.svelte"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAGpC,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACrB;AAuFF,QAAA,MAAM,aAAa,2CAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"ModulesDetail.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ModulesDetail.svelte"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAGpC,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAyFH,QAAA,MAAM,aAAa,sDAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
@@ -5,14 +5,14 @@
5
5
 
6
6
  // TODO add highlighting of the items that are onscreen
7
7
 
8
- interface Props {
8
+ const {
9
+ repos_modules,
10
+ }: {
9
11
  repos_modules: Array<{
10
12
  repo: Repo;
11
13
  modules: Array<unknown>;
12
14
  }>;
13
- }
14
-
15
- const {repos_modules}: Props = $props();
15
+ } = $props();
16
16
 
17
17
  // TODO add favicon (from library? gro?)
18
18
  </script>
@@ -1,11 +1,11 @@
1
1
  import type { Repo } from './repo.svelte.js';
2
- interface Props {
2
+ type $$ComponentProps = {
3
3
  repos_modules: Array<{
4
4
  repo: Repo;
5
5
  modules: Array<unknown>;
6
6
  }>;
7
- }
8
- declare const ModulesNav: import("svelte").Component<Props, {}, "">;
7
+ };
8
+ declare const ModulesNav: import("svelte").Component<$$ComponentProps, {}, "">;
9
9
  type ModulesNav = ReturnType<typeof ModulesNav>;
10
10
  export default ModulesNav;
11
11
  //# sourceMappingURL=ModulesNav.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ModulesNav.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ModulesNav.svelte"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAK1C,UAAU,KAAK;IACd,aAAa,EAAE,KAAK,CAAC;QACpB,IAAI,EAAE,IAAI,CAAC;QACX,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;KACxB,CAAC,CAAC;CACH;AA2BF,QAAA,MAAM,UAAU,2CAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"ModulesNav.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ModulesNav.svelte"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,aAAa,EAAE,KAAK,CAAC;QACpB,IAAI,EAAE,IAAI,CAAC;QACX,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;KACxB,CAAC,CAAC;CACH,CAAC;AA8BH,QAAA,MAAM,UAAU,sDAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
@@ -6,12 +6,13 @@
6
6
  import ModulesDetail from './ModulesDetail.svelte';
7
7
  import type {Repo} from './repo.svelte.js';
8
8
 
9
- interface Props {
9
+ const {
10
+ repo,
11
+ repos,
12
+ }: {
10
13
  repo: Repo;
11
14
  repos: Array<Repo>;
12
- }
13
-
14
- const {repo, repos}: Props = $props();
15
+ } = $props();
15
16
  </script>
16
17
 
17
18
  <svelte:head>
@@ -1,9 +1,9 @@
1
1
  import type { Repo } from './repo.svelte.js';
2
- interface Props {
2
+ type $$ComponentProps = {
3
3
  repo: Repo;
4
4
  repos: Array<Repo>;
5
- }
6
- declare const ModulesPage: import("svelte").Component<Props, {}, "">;
5
+ };
6
+ declare const ModulesPage: import("svelte").Component<$$ComponentProps, {}, "">;
7
7
  type ModulesPage = ReturnType<typeof ModulesPage>;
8
8
  export default ModulesPage;
9
9
  //# sourceMappingURL=ModulesPage.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ModulesPage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ModulesPage.svelte"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACnB;AAuCF,QAAA,MAAM,WAAW,2CAAwC,CAAC;AAC1D,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AAClD,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"ModulesPage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ModulesPage.svelte"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACnB,CAAC;AAyCH,QAAA,MAAM,WAAW,sDAAwC,CAAC;AAC1D,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AAClD,eAAe,WAAW,CAAC"}
@@ -4,15 +4,19 @@
4
4
  import type {Snippet} from 'svelte';
5
5
  import type {SvelteHTMLElements} from 'svelte/elements';
6
6
 
7
- interface Props {
7
+ const {
8
+ repo,
9
+ nav_attrs,
10
+ attrs,
11
+ nav,
12
+ children,
13
+ }: {
8
14
  repo: {package_json: PackageJson} | {url: string; package_json: null};
9
15
  nav_attrs?: SvelteHTMLElements['nav'];
10
16
  attrs?: SvelteHTMLElements['header'];
11
17
  nav?: Snippet;
12
18
  children?: Snippet;
13
- }
14
-
15
- const {repo, nav_attrs, attrs, nav, children}: Props = $props();
19
+ } = $props();
16
20
  </script>
17
21
 
18
22
  <header {...attrs}>
@@ -1,7 +1,7 @@
1
1
  import type { PackageJson } from '@fuzdev/fuz_util/package_json.js';
2
2
  import type { Snippet } from 'svelte';
3
3
  import type { SvelteHTMLElements } from 'svelte/elements';
4
- interface Props {
4
+ type $$ComponentProps = {
5
5
  repo: {
6
6
  package_json: PackageJson;
7
7
  } | {
@@ -12,8 +12,8 @@ interface Props {
12
12
  attrs?: SvelteHTMLElements['header'];
13
13
  nav?: Snippet;
14
14
  children?: Snippet;
15
- }
16
- declare const PageHeader: import("svelte").Component<Props, {}, "">;
15
+ };
16
+ declare const PageHeader: import("svelte").Component<$$ComponentProps, {}, "">;
17
17
  type PageHeader = ReturnType<typeof PageHeader>;
18
18
  export default PageHeader;
19
19
  //# sourceMappingURL=PageHeader.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PageHeader.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/PageHeader.svelte"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,kCAAkC,CAAC;AAElE,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AACpC,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,iBAAiB,CAAC;AAGvD,UAAU,KAAK;IACd,IAAI,EAAE;QAAC,YAAY,EAAE,WAAW,CAAA;KAAC,GAAG;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,IAAI,CAAA;KAAC,CAAC;IACtE,SAAS,CAAC,EAAE,kBAAkB,CAAC,KAAK,CAAC,CAAC;IACtC,KAAK,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IACrC,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB;AAwBF,QAAA,MAAM,UAAU,2CAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"PageHeader.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/PageHeader.svelte"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,kCAAkC,CAAC;AAElE,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AACpC,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,iBAAiB,CAAC;AAEvD,KAAK,gBAAgB,GAAI;IACxB,IAAI,EAAE;QAAC,YAAY,EAAE,WAAW,CAAA;KAAC,GAAG;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,IAAI,CAAA;KAAC,CAAC;IACtE,SAAS,CAAC,EAAE,kBAAkB,CAAC,KAAK,CAAC,CAAC;IACtC,KAAK,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IACrC,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AA6BH,QAAA,MAAM,UAAU,sDAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
@@ -4,12 +4,13 @@
4
4
  import {to_pull_requests, type FilterPullRequest} from './github_helpers.js';
5
5
  import type {Repo} from './repo.svelte.js';
6
6
 
7
- interface Props {
7
+ const {
8
+ repos,
9
+ filter_pull_request,
10
+ }: {
8
11
  repos: Array<Repo>;
9
12
  filter_pull_request?: FilterPullRequest | undefined;
10
- }
11
-
12
- const {repos, filter_pull_request}: Props = $props();
13
+ } = $props();
13
14
 
14
15
  const pull_requests = $derived(to_pull_requests(repos, filter_pull_request));
15
16
  </script>
@@ -1,10 +1,10 @@
1
1
  import { type FilterPullRequest } from './github_helpers.js';
2
2
  import type { Repo } from './repo.svelte.js';
3
- interface Props {
3
+ type $$ComponentProps = {
4
4
  repos: Array<Repo>;
5
5
  filter_pull_request?: FilterPullRequest | undefined;
6
- }
7
- declare const PullRequestsDetail: import("svelte").Component<Props, {}, "">;
6
+ };
7
+ declare const PullRequestsDetail: import("svelte").Component<$$ComponentProps, {}, "">;
8
8
  type PullRequestsDetail = ReturnType<typeof PullRequestsDetail>;
9
9
  export default PullRequestsDetail;
10
10
  //# sourceMappingURL=PullRequestsDetail.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PullRequestsDetail.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/PullRequestsDetail.svelte"],"names":[],"mappings":"AAKA,OAAO,EAAmB,KAAK,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAC7E,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,mBAAmB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;CACpD;AAoCF,QAAA,MAAM,kBAAkB,2CAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
1
+ {"version":3,"file":"PullRequestsDetail.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/PullRequestsDetail.svelte"],"names":[],"mappings":"AAKA,OAAO,EAAmB,KAAK,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAC7E,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,mBAAmB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;CACpD,CAAC;AAsCH,QAAA,MAAM,kBAAkB,sDAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
@@ -1,12 +1,3 @@
1
- <script module lang="ts">
2
- // TODO is this the new required pattern?
3
- export interface Props {
4
- repo: Repo;
5
- repos: Array<Repo>;
6
- filter_pull_request?: FilterPullRequest | undefined;
7
- }
8
- </script>
9
-
10
1
  <script lang="ts">
11
2
  import PageFooter from './PageFooter.svelte';
12
3
  import PageHeader from './PageHeader.svelte';
@@ -14,7 +5,15 @@
14
5
  import type {FilterPullRequest} from './github_helpers.js';
15
6
  import type {Repo} from './repo.svelte.js';
16
7
 
17
- const {repo, repos, filter_pull_request}: Props = $props();
8
+ const {
9
+ repo,
10
+ repos,
11
+ filter_pull_request,
12
+ }: {
13
+ repo: Repo;
14
+ repos: Array<Repo>;
15
+ filter_pull_request?: FilterPullRequest | undefined;
16
+ } = $props();
18
17
  </script>
19
18
 
20
19
  <svelte:head>
@@ -1,11 +1,11 @@
1
- export interface Props {
1
+ import type { FilterPullRequest } from './github_helpers.js';
2
+ import type { Repo } from './repo.svelte.js';
3
+ type $$ComponentProps = {
2
4
  repo: Repo;
3
5
  repos: Array<Repo>;
4
6
  filter_pull_request?: FilterPullRequest | undefined;
5
- }
6
- import type { FilterPullRequest } from './github_helpers.js';
7
- import type { Repo } from './repo.svelte.js';
8
- declare const PullRequestsPage: import("svelte").Component<Props, {}, "">;
7
+ };
8
+ declare const PullRequestsPage: import("svelte").Component<$$ComponentProps, {}, "">;
9
9
  type PullRequestsPage = ReturnType<typeof PullRequestsPage>;
10
10
  export default PullRequestsPage;
11
11
  //# sourceMappingURL=PullRequestsPage.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PullRequestsPage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/PullRequestsPage.svelte"],"names":[],"mappings":"AAIC,MAAM,WAAW,KAAK;IACrB,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,mBAAmB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;CACpD;AAMF,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAC3D,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAkC3C,QAAA,MAAM,gBAAgB,2CAAwC,CAAC;AAC/D,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC5D,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"PullRequestsPage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/PullRequestsPage.svelte"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAC3D,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,mBAAmB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;CACpD,CAAC;AAmCH,QAAA,MAAM,gBAAgB,sDAAwC,CAAC;AAC/D,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC5D,eAAe,gBAAgB,CAAC"}
@@ -6,12 +6,13 @@
6
6
  import type {Repo} from './repo.svelte.js';
7
7
  import {to_pull_url} from './github_helpers.js';
8
8
 
9
- interface Props {
9
+ const {
10
+ repos,
11
+ deps = ['@fuzdev/fuz_ui', '@ryanatkn/gro'],
12
+ }: {
10
13
  repos: Array<Repo>;
11
14
  deps?: Array<string>;
12
- }
13
-
14
- const {repos, deps = ['@fuzdev/fuz_ui', '@ryanatkn/gro']}: Props = $props();
15
+ } = $props();
15
16
 
16
17
  // TODO fade out the `version` column if all deps are upgraded to the latest
17
18
 
@@ -1,9 +1,9 @@
1
1
  import type { Repo } from './repo.svelte.js';
2
- interface Props {
2
+ type $$ComponentProps = {
3
3
  repos: Array<Repo>;
4
4
  deps?: Array<string>;
5
- }
6
- declare const ReposTable: import("svelte").Component<Props, {}, "">;
5
+ };
6
+ declare const ReposTable: import("svelte").Component<$$ComponentProps, {}, "">;
7
7
  type ReposTable = ReturnType<typeof ReposTable>;
8
8
  export default ReposTable;
9
9
  //# sourceMappingURL=ReposTable.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ReposTable.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ReposTable.svelte"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAI1C,UAAU,KAAK;IACd,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACrB;AAsJF,QAAA,MAAM,UAAU,2CAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"ReposTable.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ReposTable.svelte"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,KAAK,gBAAgB,GAAI;IACxB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACrB,CAAC;AAwJH,QAAA,MAAM,UAAU,sDAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
@@ -8,13 +8,15 @@
8
8
  import type {Repo} from './repo.svelte.js';
9
9
  import ReposTreeNav from './ReposTreeNav.svelte';
10
10
 
11
- interface Props {
11
+ const {
12
+ repos,
13
+ selected_repo,
14
+ nav,
15
+ }: {
12
16
  repos: Array<Repo>;
13
17
  selected_repo?: Repo | undefined;
14
18
  nav: Snippet;
15
- }
16
-
17
- const {repos, selected_repo, nav}: Props = $props();
19
+ } = $props();
18
20
  </script>
19
21
 
20
22
  <div class="repos_tree">
@@ -1,11 +1,11 @@
1
1
  import type { Snippet } from 'svelte';
2
2
  import type { Repo } from './repo.svelte.js';
3
- interface Props {
3
+ type $$ComponentProps = {
4
4
  repos: Array<Repo>;
5
5
  selected_repo?: Repo | undefined;
6
6
  nav: Snippet;
7
- }
8
- declare const ReposTree: import("svelte").Component<Props, {}, "">;
7
+ };
8
+ declare const ReposTree: import("svelte").Component<$$ComponentProps, {}, "">;
9
9
  type ReposTree = ReturnType<typeof ReposTree>;
10
10
  export default ReposTree;
11
11
  //# sourceMappingURL=ReposTree.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ReposTree.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ReposTree.svelte"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAEpC,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAI1C,UAAU,KAAK;IACd,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,aAAa,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;IACjC,GAAG,EAAE,OAAO,CAAC;CACb;AAqDF,QAAA,MAAM,SAAS,2CAAwC,CAAC;AACxD,KAAK,SAAS,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC;AAC9C,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"ReposTree.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ReposTree.svelte"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAEpC,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,KAAK,gBAAgB,GAAI;IACxB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,aAAa,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;IACjC,GAAG,EAAE,OAAO,CAAC;CACb,CAAC;AAwDH,QAAA,MAAM,SAAS,sDAAwC,CAAC;AACxD,KAAK,SAAS,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC;AAC9C,eAAe,SAAS,CAAC"}
@@ -4,13 +4,15 @@
4
4
 
5
5
  import type {Repo} from './repo.svelte.js';
6
6
 
7
- interface Props {
7
+ const {
8
+ repos,
9
+ selected_repo,
10
+ children,
11
+ }: {
8
12
  repos: Array<Repo>;
9
13
  selected_repo?: Repo;
10
14
  children: Snippet;
11
- }
12
-
13
- const {repos, selected_repo, children}: Props = $props();
15
+ } = $props();
14
16
  </script>
15
17
 
16
18
  <nav>
@@ -1,11 +1,11 @@
1
1
  import type { Snippet } from 'svelte';
2
2
  import type { Repo } from './repo.svelte.js';
3
- interface Props {
3
+ type $$ComponentProps = {
4
4
  repos: Array<Repo>;
5
5
  selected_repo?: Repo;
6
6
  children: Snippet;
7
- }
8
- declare const ReposTreeNav: import("svelte").Component<Props, {}, "">;
7
+ };
8
+ declare const ReposTreeNav: import("svelte").Component<$$ComponentProps, {}, "">;
9
9
  type ReposTreeNav = ReturnType<typeof ReposTreeNav>;
10
10
  export default ReposTreeNav;
11
11
  //# sourceMappingURL=ReposTreeNav.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ReposTreeNav.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ReposTreeNav.svelte"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAEpC,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;CAClB;AA6BF,QAAA,MAAM,YAAY,2CAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"ReposTreeNav.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ReposTreeNav.svelte"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAEpC,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;CAClB,CAAC;AAgCH,QAAA,MAAM,YAAY,sDAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
@@ -4,12 +4,13 @@
4
4
  import ReposTable from './ReposTable.svelte';
5
5
  import type {Repo} from './repo.svelte.js';
6
6
 
7
- interface Props {
7
+ const {
8
+ repo,
9
+ repos,
10
+ }: {
8
11
  repo: Repo;
9
12
  repos: Array<Repo>;
10
- }
11
-
12
- const {repo, repos}: Props = $props();
13
+ } = $props();
13
14
  </script>
14
15
 
15
16
  <svelte:head>
@@ -1,9 +1,9 @@
1
1
  import type { Repo } from './repo.svelte.js';
2
- interface Props {
2
+ type $$ComponentProps = {
3
3
  repo: Repo;
4
4
  repos: Array<Repo>;
5
- }
6
- declare const TablePage: import("svelte").Component<Props, {}, "">;
5
+ };
6
+ declare const TablePage: import("svelte").Component<$$ComponentProps, {}, "">;
7
7
  type TablePage = ReturnType<typeof TablePage>;
8
8
  export default TablePage;
9
9
  //# sourceMappingURL=TablePage.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TablePage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/TablePage.svelte"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACnB;AAiCF,QAAA,MAAM,SAAS,2CAAwC,CAAC;AACxD,KAAK,SAAS,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC;AAC9C,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"TablePage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/TablePage.svelte"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACnB,CAAC;AAmCH,QAAA,MAAM,SAAS,sDAAwC,CAAC;AACxD,KAAK,SAAS,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC;AAC9C,eAAe,SAAS,CAAC"}
@@ -7,13 +7,15 @@
7
7
  import ReposTree from './ReposTree.svelte';
8
8
  import type {Repo} from './repo.svelte.js';
9
9
 
10
- interface Props {
10
+ const {
11
+ repo,
12
+ repos,
13
+ slug,
14
+ }: {
11
15
  repo: Repo;
12
16
  repos: Array<Repo>;
13
17
  slug: string;
14
- }
15
-
16
- const {repo, repos, slug}: Props = $props();
18
+ } = $props();
17
19
 
18
20
  // TODO ideally there would be one `ReposTree` mounted by the layout with transitions
19
21
 
@@ -1,10 +1,10 @@
1
1
  import type { Repo } from './repo.svelte.js';
2
- interface Props {
2
+ type $$ComponentProps = {
3
3
  repo: Repo;
4
4
  repos: Array<Repo>;
5
5
  slug: string;
6
- }
7
- declare const TreeItemPage: import("svelte").Component<Props, {}, "">;
6
+ };
7
+ declare const TreeItemPage: import("svelte").Component<$$ComponentProps, {}, "">;
8
8
  type TreeItemPage = ReturnType<typeof TreeItemPage>;
9
9
  export default TreeItemPage;
10
10
  //# sourceMappingURL=TreeItemPage.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TreeItemPage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/TreeItemPage.svelte"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;CACb;AAiDF,QAAA,MAAM,YAAY,2CAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"TreeItemPage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/TreeItemPage.svelte"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;CACb,CAAC;AAoDH,QAAA,MAAM,YAAY,sDAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
@@ -6,12 +6,13 @@
6
6
  import ReposTree from './ReposTree.svelte';
7
7
  import type {Repo} from './repo.svelte.js';
8
8
 
9
- interface Props {
9
+ const {
10
+ repo,
11
+ repos,
12
+ }: {
10
13
  repo: Repo;
11
14
  repos: Array<Repo>;
12
- }
13
-
14
- const {repo, repos}: Props = $props();
15
+ } = $props();
15
16
 
16
17
  // TODO ideally there would be one `ReposTree` mounted by the layout with transitions
17
18
  </script>
@@ -1,9 +1,9 @@
1
1
  import type { Repo } from './repo.svelte.js';
2
- interface Props {
2
+ type $$ComponentProps = {
3
3
  repo: Repo;
4
4
  repos: Array<Repo>;
5
- }
6
- declare const TreePage: import("svelte").Component<Props, {}, "">;
5
+ };
6
+ declare const TreePage: import("svelte").Component<$$ComponentProps, {}, "">;
7
7
  type TreePage = ReturnType<typeof TreePage>;
8
8
  export default TreePage;
9
9
  //# sourceMappingURL=TreePage.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TreePage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/TreePage.svelte"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAG1C,UAAU,KAAK;IACd,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACnB;AAyCF,QAAA,MAAM,QAAQ,2CAAwC,CAAC;AACvD,KAAK,QAAQ,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,CAAC;AAC5C,eAAe,QAAQ,CAAC"}
1
+ {"version":3,"file":"TreePage.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/TreePage.svelte"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAE1C,KAAK,gBAAgB,GAAI;IACxB,IAAI,EAAE,IAAI,CAAC;IACX,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACnB,CAAC;AA2CH,QAAA,MAAM,QAAQ,sDAAwC,CAAC;AACvD,KAAK,QAAQ,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,CAAC;AAC5C,eAAe,QAAQ,CAAC"}
@@ -12,7 +12,7 @@ import type { LocalRepo } from './local_repo.js';
12
12
  * Repos with failed fetches will have `null` for check_runs or pull_requests.
13
13
  *
14
14
  * @param delay milliseconds between API requests (default: 33ms)
15
- * @param cache optional cache from belt's fetch.js for response memoization
15
+ * @param cache optional cache from fuz_util's fetch.js for response memoization
16
16
  * @returns array of Repo objects with GitHub metadata attached
17
17
  */
18
18
  export declare const fetch_repo_data: (resolved_repos: Array<LocalRepo>, token?: string, cache?: FetchValueCache, log?: Logger, delay?: number, github_api_version?: string) => Promise<Array<RepoJson>>;
@@ -11,7 +11,7 @@ import { fetch_github_check_runs, fetch_github_pull_requests } from './github.js
11
11
  * Repos with failed fetches will have `null` for check_runs or pull_requests.
12
12
  *
13
13
  * @param delay milliseconds between API requests (default: 33ms)
14
- * @param cache optional cache from belt's fetch.js for response memoization
14
+ * @param cache optional cache from fuz_util's fetch.js for response memoization
15
15
  * @returns array of Repo objects with GitHub metadata attached
16
16
  */
17
17
  export const fetch_repo_data = async (resolved_repos, token, cache, log, delay = 33, github_api_version) => {
@@ -8,7 +8,7 @@ export interface FetchCache {
8
8
  save: () => Promise<boolean>;
9
9
  }
10
10
  /**
11
- * Creates file-system backed cache for belt's fetch.js API responses.
11
+ * Creates file-system backed cache for fuz_util's fetch.js API responses.
12
12
  *
13
13
  * Cache invalidation strategy: If cache file can't be read or parsed, entire
14
14
  * cache is cleared (delete file) and starts fresh. This handles format changes.
@@ -5,7 +5,7 @@ import { format_file } from '@ryanatkn/gro/format_file.js';
5
5
  import { deserialize_cache, serialize_cache } from '@fuzdev/fuz_util/fetch.js';
6
6
  import { existsSync } from 'node:fs';
7
7
  /**
8
- * Creates file-system backed cache for belt's fetch.js API responses.
8
+ * Creates file-system backed cache for fuz_util's fetch.js API responses.
9
9
  *
10
10
  * Cache invalidation strategy: If cache file can't be read or parsed, entire
11
11
  * cache is cleared (delete file) and starts fresh. This handles format changes.
@@ -2,7 +2,7 @@ import type { Task } from '@ryanatkn/gro';
2
2
  import { z } from 'zod';
3
3
  /** @nodocs */
4
4
  export declare const Args: z.ZodObject<{
5
- path: z.ZodDefault<z.ZodString>;
5
+ config: z.ZodDefault<z.ZodString>;
6
6
  dir: z.ZodOptional<z.ZodString>;
7
7
  format: z.ZodDefault<z.ZodEnum<{
8
8
  json: "json";
@@ -1 +1 @@
1
- {"version":3,"file":"gitops_analyze.task.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/gitops_analyze.task.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AACxC,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAetB,cAAc;AACd,eAAO,MAAM,IAAI;;;;;;;;;kBAcf,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC;AAExC,cAAc;AACd,eAAO,MAAM,IAAI,EAAE,IAAI,CAAC,IAAI,CAkC3B,CAAC"}
1
+ {"version":3,"file":"gitops_analyze.task.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/gitops_analyze.task.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AACxC,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAgBtB,cAAc;AACd,eAAO,MAAM,IAAI;;;;;;;;;kBAcf,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC;AAExC,cAAc;AACd,eAAO,MAAM,IAAI,EAAE,IAAI,CAAC,IAAI,CAkC3B,CAAC"}