You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -201,6 +205,18 @@ You can use the following placeholders for customizing the snapshot release vers
201
205
202
206
If you are not specifying `prereleaseTemplate`, the default behavior will fall back to using the following template: `{tag}-{datetime}`, and in cases where the tag is empty (`--snapshot` with no tag name), it will use `{datetime}` only.
203
207
208
+
## `prettier` (optional boolean)
209
+
210
+
This option configures whether Changesets will format its output using Prettier. When set to `false`, Changesets will skip formatting with Prettier.
211
+
212
+
Default value: `true`
213
+
214
+
```json
215
+
{
216
+
"prettier": false
217
+
}
218
+
```
219
+
204
220
## `privatePackages` (object or false)
205
221
206
222
This option is for setting how private packages should be handled. By default, Changesets will update the changelog for private packages and update their version, but will not create a tag. You can configure this option to change the default behavior.
@@ -227,3 +243,23 @@ When `tag` is set to `true`, Changesets will create a tag for private packages.
227
243
}
228
244
}
229
245
```
246
+
247
+
## `changedFilePatterns` (array of strings)
248
+
249
+
Glob patterns for changed files that should mark a package as changed. Useful to fine-tune what counts as a change (e.g. only source files, ignoring test files, etc).
0 commit comments