gitmoji-cli
Advanced tools
Comparing version 8.2.1 to 8.2.2
const HOOK = { | ||
PERMISSIONS: 0o775, | ||
FILENAME: 'prepare-commit-msg', | ||
CONTENTS: '#!/usr/bin/env sh\n# gitmoji as a commit hook\n' + 'if npx -v >&/dev/null\n' + 'then\n' + ' exec < /dev/tty\n npx -c "gitmoji --hook $1 $2"\n' + 'else\n' + ' exec < /dev/tty\n gitmoji --hook $1 $2\n' + 'fi' | ||
CONTENTS: '#!/usr/bin/env bash\n# gitmoji as a commit hook\n' + 'if npx -v >&/dev/null\n' + 'then\n' + ' exec < /dev/tty\n npx -c "gitmoji --hook $1 $2"\n' + 'else\n' + ' exec < /dev/tty\n gitmoji --hook $1 $2\n' + 'fi' | ||
}; | ||
export default HOOK; |
{ | ||
"name": "gitmoji-cli", | ||
"version": "8.2.1", | ||
"version": "8.2.2", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "A gitmoji client for using emojis on commit messages.", |
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
32600