synopkg
Version:
Consistent dependency versions in large JavaScript Monorepos
51 lines (34 loc) • 1.19 kB
text/mdx
---
title: Ignored
---
import { Badge } from "@astrojs/starlight/components";
import Packages from "@partials/group-config/packages.mdx";
import Dependencies from "@partials/group-config/dependencies.mdx";
import DependencyTypes from "@partials/group-config/dependency-types.mdx";
import SpecifierTypes from "@partials/group-config/specifier-types.mdx";
import Label from "@partials/group-config/label.mdx";
import Details from "@site/components/details.astro";
Have synopkg ignore the versions of these dependencies completely.
## Configuration
### isIgnored <Badge text="Required" variant="danger" />
This property activates this behaviour for a given Version Group.
```json title=".synopkgrc.json"
{
"versionGroups": [
{
"dependencies": ["keep-walking"],
"isIgnored": true
}
]
}
```
##
<Dependencies />
### dependencyTypes <Badge text="Optional" variant="note" />
<DependencyTypes />
### specifierTypes <Badge text="Optional" variant="note" />
<SpecifierTypes />
##
<Label />
##
<Packages />