oclif-plugin-update-notifier
Advanced tools
Comparing version 1.5.10 to 1.5.11
@@ -0,1 +1,9 @@ | ||
## [1.5.11](https://github.com/jayree/oclif-plugin-update-notifier/compare/v1.5.10...v1.5.11) (2023-02-01) | ||
### Bug Fixes | ||
* **deps:** bump @oclif/core from 1.26.1 to 2.0.8 ([db3c068](https://github.com/jayree/oclif-plugin-update-notifier/commit/db3c0689bc9edc759c67a5ca9c30bf4aa56287d0)) | ||
* **deps:** bump @salesforce/kit from 1.8.3 to 1.8.4 ([#107](https://github.com/jayree/oclif-plugin-update-notifier/issues/107)) ([e3ad83f](https://github.com/jayree/oclif-plugin-update-notifier/commit/e3ad83f26d585d18eae65605d8bbaacd23bcdb08)) | ||
## [1.5.10](https://github.com/jayree/oclif-plugin-update-notifier/compare/v1.5.9...v1.5.10) (2023-01-27) | ||
@@ -2,0 +10,0 @@ |
@@ -7,3 +7,3 @@ /* | ||
*/ | ||
import { CliUx } from '@oclif/core'; | ||
import { ux } from '@oclif/core'; | ||
import chalk from 'chalk'; | ||
@@ -15,3 +15,3 @@ import Debug from 'debug'; | ||
if (!options.spawnOptions.detached) | ||
CliUx.ux.action.start('check for updates'); | ||
ux.action.start('check for updates'); | ||
if (debug.enabled) | ||
@@ -37,3 +37,3 @@ options.spawnOptions.stdio = 'inherit'; | ||
if (!options.spawnOptions.detached) | ||
CliUx.ux.action.stop(); | ||
ux.action.stop(); | ||
notifier.notify({ header, defer: options.defer }); | ||
@@ -40,0 +40,0 @@ } |
@@ -16,5 +16,7 @@ /* | ||
})().catch((error) => { | ||
console.error(error); | ||
if (error instanceof Error) { | ||
console.error(error.message); | ||
} | ||
process.exit(1); | ||
}); | ||
//# sourceMappingURL=check.js.map |
@@ -10,3 +10,3 @@ /* | ||
import semverDiff from 'semver-diff'; | ||
import { CliUx } from '@oclif/core'; | ||
import { ux } from '@oclif/core'; | ||
import packageJson from 'package-json'; | ||
@@ -75,5 +75,5 @@ import fs from 'fs-extra'; | ||
catch (error) { | ||
CliUx.ux.warn(error.message); | ||
ux.warn(error.message); | ||
} | ||
} | ||
//# sourceMappingURL=fetchInfo.js.map |
{ | ||
"version": "1.5.10", | ||
"version": "1.5.11", | ||
"commands": { | ||
@@ -4,0 +4,0 @@ "plugins:update:check": { |
{ | ||
"name": "oclif-plugin-update-notifier", | ||
"description": "update-notifier for oclif plugins", | ||
"version": "1.5.10", | ||
"version": "1.5.11", | ||
"author": "jayree", | ||
@@ -9,4 +9,4 @@ "type": "module", | ||
"dependencies": { | ||
"@oclif/core": "^1.26.1", | ||
"@salesforce/kit": "^1.8.3", | ||
"@oclif/core": "^2.0.8", | ||
"@salesforce/kit": "^1.8.4", | ||
"boxen": "^7.0.1", | ||
@@ -27,5 +27,5 @@ "chalk": "^5.2.0", | ||
"@commitlint/config-conventional": "^17.4.2", | ||
"@oclif/plugin-command-snapshot": "^3.3.1", | ||
"@oclif/plugin-help": "^5.2.1", | ||
"@oclif/test": "^2.3.3", | ||
"@oclif/plugin-command-snapshot": "^3.3.2", | ||
"@oclif/plugin-help": "^5.2.2", | ||
"@oclif/test": "^2.3.4", | ||
"@salesforce/dev-config": "^3.1.0", | ||
@@ -37,3 +37,3 @@ "@salesforce/dev-scripts": "^3.1.0", | ||
"@types/debug": "^4.1.7", | ||
"@types/fs-extra": "^9.0.13", | ||
"@types/fs-extra": "^11.0.1", | ||
"@types/marked": "^4.0.8", | ||
@@ -45,12 +45,12 @@ "@types/marked-terminal": "^3.1.3", | ||
"@types/sinon": "^10.0.13", | ||
"@typescript-eslint/eslint-plugin": "^5.49.0", | ||
"@typescript-eslint/parser": "^5.49.0", | ||
"@typescript-eslint/eslint-plugin": "^5.50.0", | ||
"@typescript-eslint/parser": "^5.50.0", | ||
"chai": "^4.3.7", | ||
"eslint": "^8.32.0", | ||
"eslint": "^8.33.0", | ||
"eslint-config-prettier": "^8.6.0", | ||
"eslint-config-salesforce": "^1.1.0", | ||
"eslint-config-salesforce": "^1.1.1", | ||
"eslint-config-salesforce-typescript": "^1.1.1", | ||
"eslint-plugin-header": "^3.1.1", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-jsdoc": "^39.6.8", | ||
"eslint-plugin-jsdoc": "^39.7.5", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
@@ -60,3 +60,3 @@ "husky": "^8.0.3", | ||
"nyc": "^15.1.0", | ||
"oclif": "^3.6.1", | ||
"oclif": "^3.6.2", | ||
"patch-package": "^6.5.1", | ||
@@ -69,3 +69,3 @@ "pinst": "^3.0.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.4" | ||
"typescript": "^4.9.5" | ||
}, | ||
@@ -72,0 +72,0 @@ "engines": { |
@@ -25,3 +25,3 @@ # oclif-plugin-update-notifier | ||
$ oclif-example plugins | ||
oclif-plugin-update-notifier 1.5.10 | ||
oclif-plugin-update-notifier 1.5.11 | ||
$ oclif-example help plugins:[COMMAND] | ||
@@ -64,3 +64,3 @@ USAGE | ||
_See code: [src/commands/plugins/update/check.ts](https://github.com/jayree/oclif-plugin-update-notifier/blob/v1.5.10/src/commands/plugins/update/check.ts)_ | ||
_See code: [src/commands/plugins/update/check.ts](https://github.com/jayree/oclif-plugin-update-notifier/blob/v1.5.11/src/commands/plugins/update/check.ts)_ | ||
<!-- commandsstop --> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
52336
510
+ Added@cspotcode/source-map-support@0.8.1(transitive)
+ Added@jridgewell/resolve-uri@3.1.2(transitive)
+ Added@jridgewell/sourcemap-codec@1.5.0(transitive)
+ Added@jridgewell/trace-mapping@0.3.9(transitive)
+ Added@oclif/core@2.16.0(transitive)
+ Added@tsconfig/node10@1.0.11(transitive)
+ Added@tsconfig/node12@1.0.11(transitive)
+ Added@tsconfig/node14@1.0.3(transitive)
+ Added@tsconfig/node16@1.0.4(transitive)
+ Added@types/cli-progress@3.11.6(transitive)
+ Added@types/node@22.10.2(transitive)
+ Addedacorn@8.14.0(transitive)
+ Addedacorn-walk@8.3.4(transitive)
+ Addedarg@4.1.3(transitive)
+ Addedastral-regex@2.0.0(transitive)
+ Addedcreate-require@1.1.1(transitive)
+ Addeddiff@4.0.2(transitive)
+ Addedmake-error@1.3.6(transitive)
+ Addedslice-ansi@4.0.0(transitive)
+ Addedts-node@10.9.2(transitive)
+ Addedtypescript@5.7.2(transitive)
+ Addedundici-types@6.20.0(transitive)
+ Addedv8-compile-cache-lib@3.0.1(transitive)
+ Addedwordwrap@1.0.0(transitive)
+ Addedyn@3.1.1(transitive)
- Removed@oclif/core@1.26.2(transitive)
- Removed@oclif/linewrap@1.0.0(transitive)
- Removed@oclif/screen@3.0.8(transitive)
- Removedat-least-node@1.0.0(transitive)
- Removedfs-extra@9.1.0(transitive)
Updated@oclif/core@^2.0.8
Updated@salesforce/kit@^1.8.4