@carbon/cli 11.26.0 → 11.27.0

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.
package/bin/carbon-cli.js CHANGED
@@ -7,8 +7,6 @@
7
7
  * LICENSE file in the root directory of this source tree.
8
8
  */
9
9
 
10
- /* eslint-disable no-console */
11
-
12
10
  'use strict';
13
11
 
14
12
  // Inspired by Create React App
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/cli",
3
3
  "description": "Task automation for working with the Carbon Design System",
4
- "version": "11.26.0",
4
+ "version": "11.27.0",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
7
7
  "carbon-cli": "./bin/carbon-cli.js"
@@ -58,5 +58,5 @@
58
58
  "typescript-config-carbon": "^0.5.0",
59
59
  "yargs": "^17.0.1"
60
60
  },
61
- "gitHead": "01b2d2b1c2d901921c615dcbdb85e0a2340b67e6"
61
+ "gitHead": "ec31b96c91af8208499180eaeae89eb08b7ac8c8"
62
62
  }
@@ -49,10 +49,8 @@ async function changelog({ range }) {
49
49
 
50
50
  if (copy) {
51
51
  clipboard.writeSync(changelog);
52
- // eslint-disable-next-line no-console
53
52
  console.log('Done!');
54
53
  } else {
55
- // eslint-disable-next-line no-console
56
54
  console.log(changelog);
57
55
  }
58
56
  }
@@ -5,8 +5,6 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- /* eslint-disable no-console */
9
-
10
8
  'use strict';
11
9
 
12
10
  const { reporter } = require('@carbon/cli-reporter');
@@ -5,8 +5,6 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- /* eslint-disable no-console */
9
-
10
8
  'use strict';
11
9
 
12
10
  const chalk = require('chalk');
@@ -5,8 +5,6 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- /* eslint-disable no-console */
9
-
10
8
  'use strict';
11
9
 
12
10
  const Octokit = require('@octokit/rest');
@@ -200,7 +200,6 @@ async function publish({ tag, ...flags }) {
200
200
  ]);
201
201
 
202
202
  if (display) {
203
- // eslint-disable-next-line no-console
204
203
  console.log(changelog);
205
204
  }
206
205
  }