Comparing version 6.1.0 to 6.2.0
@@ -368,3 +368,3 @@ import Enquirer from 'enquirer'; | ||
readonly stream: ProcessOutputStreamMap; | ||
private active; | ||
protected active: boolean; | ||
constructor(stdout?: NodeJS.WriteStream, stderr?: NodeJS.WriteStream, options?: ProcessOutputOptions); | ||
@@ -371,0 +371,0 @@ get stdout(): NodeJS.WriteStream; |
{ | ||
"name": "listr2", | ||
"version": "6.1.0", | ||
"version": "6.2.0", | ||
"description": "Terminal task list reborn! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.", | ||
@@ -42,5 +42,5 @@ "license": "MIT", | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm exec lint-staged", | ||
"prepare-commit-msg": "[ -t 1 ] && exec < /dev/tty && git cz --hook || true", | ||
"pre-push": "pnpm run test" | ||
"pre-commit": "[ -z $SKIP_GIT_HOOKS ] && pnpm exec lint-staged", | ||
"prepare-commit-msg": "[ -z $SKIP_GIT_HOOKS ] && [ -t 1 ] && exec < /dev/tty && git cz --hook || true", | ||
"pre-push": "[ -z $SKIP_GIT_HOOKS ] && pnpm run test" | ||
}, | ||
@@ -47,0 +47,0 @@ "lint-staged": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
206940