We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68bd6b commit 832458aCopy full SHA for 832458a
README.md
@@ -122,13 +122,17 @@ standard-version --help
122
123
## Code usage
124
125
+Use the `silent` option to stop `standard-version` from printing anything
126
+to the console.
127
+
128
```js
129
var standardVersion = require('standard-version')
130
131
// Options are the same as command line, except camelCase
132
standardVersion({
133
noVerify: true,
- infile: 'docs/CHANGELOG.md'
134
+ infile: 'docs/CHANGELOG.md',
135
+ silent: true
136
}, function (err) {
137
if (err) {
138
console.error(`standard-version failed with message: ${err.message}`)
0 commit comments