Skip to content

Commit c80a54d

Browse files
committed
style(site): format source in site directory
1 parent e435e21 commit c80a54d

File tree

7 files changed

+16
-21
lines changed

7 files changed

+16
-21
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
google-site-verification: googlebfe2dd5c46c76281.html
1+
google-site-verification: googlebfe2dd5c46c76281.html

site/src/_partials/option/check.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,4 @@ import { Code } from "astro:components";
22

33
<p>{props.summary}</p>
44

5-
<Code
6-
code={`syncpack ${props.command} --check`}
7-
lang="bash"
8-
/>
5+
<Code code={`syncpack ${props.command} --check`} lang="bash" />

site/src/content/docs/config/dependency-groups.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Treat all dependencies from the [AWS SDK for JavaScript](https://aws.amazon.com/
2828

2929
With the above config: "@aws-sdk/core", "@aws-sdk/middleware-logger" etc will be treated as if they were one dependency – any differences in their versions will be caught in the usual way.
3030

31-
3231
## Configuration
3332

3433
### aliasName <Badge text="Required" variant="danger" />

site/src/content/docs/config/version-groups.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: versionGroups
33
slug: version-groups
44
---
55

6-
import { Tabs, TabItem } from '@astrojs/starlight/components';
6+
import { Tabs, TabItem } from "@astrojs/starlight/components";
77

88
Version groups split your project into isolated sections, each with their own policy for how versions should be managed.
99

@@ -70,8 +70,8 @@ Any properties of a version group that are omitted will match-all by default, so
7070
"packages": ["**"],
7171
"specifierTypes": ["**"],
7272
"isIgnored": true
73-
},
74-
],
73+
}
74+
]
7575
}
7676
```
7777

site/src/content/docs/semver-groups/ignored.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: Ignored
33
---
44

5-
import { Badge } from '@astrojs/starlight/components';
6-
import Packages from '@partials/group-config/packages.mdx';
7-
import Dependencies from '@partials/group-config/dependencies.mdx';
8-
import DependencyTypes from '@partials/group-config/dependency-types.mdx';
9-
import SpecifierTypes from '@partials/group-config/specifier-types.mdx';
10-
import Label from '@partials/group-config/label.mdx';
5+
import { Badge } from "@astrojs/starlight/components";
6+
import Packages from "@partials/group-config/packages.mdx";
7+
import Dependencies from "@partials/group-config/dependencies.mdx";
8+
import DependencyTypes from "@partials/group-config/dependency-types.mdx";
9+
import SpecifierTypes from "@partials/group-config/specifier-types.mdx";
10+
import Label from "@partials/group-config/label.mdx";
1111

1212
Have syncpack ignore the semver ranges of these dependencies completely.
1313

site/src/content/docs/version-groups/highest-semver.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ title: Highest Semver
33
---
44

55
import { Badge } from "@astrojs/starlight/components";
6-
import Packages from '@partials/group-config/packages.mdx';
7-
import Dependencies from '@partials/group-config/dependencies.mdx';
8-
import DependencyTypes from '@partials/group-config/dependency-types.mdx';
9-
import SpecifierTypes from '@partials/group-config/specifier-types.mdx';
10-
import Label from '@partials/group-config/label.mdx';
6+
import Packages from "@partials/group-config/packages.mdx";
7+
import Dependencies from "@partials/group-config/dependencies.mdx";
8+
import DependencyTypes from "@partials/group-config/dependency-types.mdx";
9+
import SpecifierTypes from "@partials/group-config/specifier-types.mdx";
10+
import Label from "@partials/group-config/label.mdx";
1111

1212
Fix mismatched versions in this group by choosing the highest/newest semver version in use.
1313

site/src/faq/sync-engines-in-monorepo.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Manage npm engines throughout monorepo
33
---
44

5-
65
Add the [`engines`](HREF_ENGINES) property of package.json files to also be inspected by syncpack.
76

87
### 1. Add a custom type

0 commit comments

Comments
 (0)