@@ -10,13 +10,11 @@ import Pills from '@site/src/components/pill';
1010
1111<Pills optional />
1212
13- All of the [ default dependency types] ( #default-dependency-types ) are enabled by
14- default, but can be reduced to a smaller list via the ` dependencyTypes ` property
15- of your config file.
13+ All of the [ default dependency types] ( #default-dependency-types ) are enabled by default, but can be
14+ reduced to a smaller list via the ` dependencyTypes ` property of your config file.
1615
1716In this example, only dependencies found in the
18- [ ` dependencies ` ] ( https://docs.npmjs.com/cli/v9/configuring-npm/package-json#dependencies )
19- and
17+ [ ` dependencies ` ] ( https://docs.npmjs.com/cli/v9/configuring-npm/package-json#dependencies ) and
2018[ ` devDependencies ` ] ( https://docs.npmjs.com/cli/v9/configuring-npm/package-json#devDependencies )
2119properties of package.json files will be inspected by syncpack:
2220
@@ -35,17 +33,16 @@ Syncpack config files also support
3533
3634:::tip
3735
38- The [ default dependency types] ( #default-dependency-types ) can be extended with
39- your own [ ` customTypes ` ] ( ./custom-types.mdx ) , so you can find and fix versions
40- found in other parts of your package.json files.
36+ The [ default dependency types] ( #default-dependency-types ) can be extended with your own
37+ [ ` customTypes ` ] ( ./custom-types.mdx ) , so you can find and fix versions found in other parts of your
38+ package.json files.
4139
4240:::
4341
4442:::info
4543
46- Your ` dependencyTypes ` configuration in your [ config file] ( ../config-file.mdx )
47- can be overridden on an ad hoc basis using the [ ` --types ` ] ( ../option/types.mdx )
48- option.
44+ Your ` dependencyTypes ` configuration in your [ config file] ( ../config-file.mdx ) can be overridden on
45+ an ad hoc basis using the [ ` --types ` ] ( ../option/types.mdx ) option.
4946
5047:::
5148
@@ -56,9 +53,8 @@ option.
5653## The ` workspace ` type
5754
5855This option synchronises the versions of your dependencies with the
59- [ ` version ` ] ( https://docs.npmjs.com/cli/v9/configuring-npm/package-json#version )
60- properties of the package.json files developed in your own local
61- workspace/project, when they relate to eachother.
56+ [ ` version ` ] ( https://docs.npmjs.com/cli/v9/configuring-npm/package-json#version ) properties of the
57+ package.json files developed in your own local workspace/project, when they relate to eachother.
6258
6359Take this example, ` @your-repo/fetch ` is developed in your repo:
6460
@@ -83,5 +79,5 @@ and another package developed in your repo depends on it:
8379}
8480```
8581
86- When ` workspace ` is enabled, syncpack will fix ` @your-repo/ui ` so it depends on
87- version ` 1.0.2 ` of ` @your-repo/fetch ` .
82+ When ` workspace ` is enabled, syncpack will fix ` @your-repo/ui ` so it depends on version ` 1.0.2 ` of
83+ ` @your-repo/fetch ` .
0 commit comments