Comparing version 6.0.2 to 6.0.3
@@ -5,2 +5,9 @@ # Changelog | ||
### [6.0.3](https://github.com/oclif/cli-ux/compare/v6.0.2...v6.0.3) (2021-12-02) | ||
### Bug Fixes | ||
* update oclif/core imports ([74fdab5](https://github.com/oclif/cli-ux/commit/74fdab55fed2767f920d7dca430e73ebed772a79)) | ||
### [6.0.2](https://github.com/oclif/cli-ux/compare/v6.0.1...v6.0.2) (2021-12-01) | ||
@@ -7,0 +14,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { Errors } from '@oclif/core'; | ||
import * as Errors from '@oclif/core/lib/errors'; | ||
import { ActionBase } from './action/base'; | ||
@@ -3,0 +3,0 @@ import { config, Config } from './config'; |
@@ -5,3 +5,3 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
const core_1 = require("@oclif/core"); | ||
const Errors = (0, tslib_1.__importStar)(require("@oclif/core/lib/errors")); | ||
const util = (0, tslib_1.__importStar)(require("util")); | ||
@@ -37,5 +37,5 @@ const base_1 = require("./action/base"); | ||
config: config_1.config, | ||
warn: core_1.Errors.warn, | ||
error: core_1.Errors.error, | ||
exit: core_1.Errors.exit, | ||
warn: Errors.warn, | ||
error: Errors.error, | ||
exit: Errors.exit, | ||
get prompt() { | ||
@@ -42,0 +42,0 @@ return deps_1.default.prompt.prompt; |
@@ -5,3 +5,3 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
const core_1 = require("@oclif/core"); | ||
const Errors = (0, tslib_1.__importStar)(require("@oclif/core/lib/errors")); | ||
const chalk_1 = (0, tslib_1.__importDefault)(require("chalk")); | ||
@@ -133,7 +133,7 @@ const config_1 = (0, tslib_1.__importDefault)(require("./config")); | ||
if (char === 'q') | ||
core_1.Errors.error('quit'); | ||
Errors.error('quit'); | ||
if (char === '\u0003') | ||
core_1.Errors.error('ctrl-c'); | ||
Errors.error('ctrl-c'); | ||
return char; | ||
} | ||
exports.anykey = anykey; |
{ | ||
"name": "cli-ux", | ||
"description": "cli IO utilities", | ||
"version": "6.0.2", | ||
"version": "6.0.3", | ||
"author": "Jeff Dickey @jdxcode", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/oclif/cli-ux/issues", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99200