Skip to content

Commit e371437

Browse files
authored
fix: resolve module resolution errors | flanksource/facet (#462)
* chore: bump modules * fix: make fmt * chore: configure fmt to explicitly use .prettierignore for modules exclusion
1 parent c61ba4c commit e371437

File tree

12 files changed

+3261
-156
lines changed

12 files changed

+3261
-156
lines changed

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ tasks:
7878
fmt:
7979
desc: Format all markdown files with prettier
8080
cmds:
81-
- npx prettier --write "**/*.md"
81+
- npx prettier --write "**/*.md" --ignore-path .prettierignore
8282

8383
fmt:check:
8484
desc: Check markdown formatting without making changes
8585
cmds:
86-
- npx prettier --check --log-level=debug "**/*.md"
86+
- npx prettier --check --log-level=debug "**/*.md" --ignore-path .prettierignore
8787

8888
# File reference validation
8989
check:files:

mission-control/docs/guide/permissions/multi-tenancy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ spec:
142142
- playbook:run
143143
object:
144144
playbooks:
145-
- name: "*"
145+
- name: '*'
146146
configs:
147147
- tagSelector: cluster=demo
148148
- tagSelector: cluster=staging

mission-control/docs/integrations/flux/playbooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Mission control enhances a [flux](https://fluxcd.io/flux) deployment with:
2020

2121
The following playbooks work by calling the `flux` CLI directly
2222

23-
| Playbook | <Icon name="kustomize">Kustomization</Icon> | <Icon name="helm">HelmRelease</Icon> |
23+
| Playbook | <Icon name="kustomize">Kustomization</Icon> | <Icon name="helm">HelmRelease</Icon> |
2424
| ---------------------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
2525
| <Icon name="flux">Suspend</Icon><Tooltip>Runs `flux suspend`</Tooltip> | <IoIosCheckmarkCircleOutline color='green' size={24} /> | <IoIosCheckmarkCircleOutline color='green' size={24} /> |
2626
| <Icon name="flux">Resume</Icon><Tooltip>Runs`flux resume`</Tooltip> | <IoIosCheckmarkCircleOutline color='green' size={24} /> | <IoIosCheckmarkCircleOutline color='green' size={24} /> |

mission-control/docs/reference/playbooks/events.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Canary events relate to activities on health checks.
2222

2323
Component events relate to changes in component health status.
2424

25-
| Event | Description |
26-
| ----------- | ---------------------------------------- |
27-
| `healthy` | When a component becomes healthy |
28-
| `unhealthy` | When a component becomes unhealthy |
29-
| `warning` | When a component enters a warning state |
25+
| Event | Description |
26+
| ----------- | --------------------------------------- |
27+
| `healthy` | When a component becomes healthy |
28+
| `unhealthy` | When a component becomes unhealthy |
29+
| `warning` | When a component enters a warning state |
3030

3131
| Event | Description |
3232
| -------- | ------------------------------------- |

0 commit comments

Comments
 (0)