@oclif/core 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/command.js +1 -1
  2. package/package.json +1 -1
package/lib/command.js CHANGED
@@ -138,7 +138,7 @@ class Command {
138
138
  logToStderr(message = '', ...args) {
139
139
  if (!this.jsonEnabled()) {
140
140
  message = typeof message === 'string' ? message : (0, util_1.inspect)(message);
141
- stream_1.stdout.write((0, util_1.format)(message, ...args) + '\n');
141
+ stream_1.stderr.write((0, util_1.format)(message, ...args) + '\n');
142
142
  }
143
143
  }
144
144
  jsonEnabled() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/core",
3
3
  "description": "base library for oclif CLIs",
4
- "version": "2.2.0",
4
+ "version": "2.2.1",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {