We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
json-colorizer has been rewritten from scratch recently. Colorizing in jfq doesn't work with the latest version saying
json-colorizer
jfq
colorize is not a function
This simple patch makes it work again
--- a/src/jfq.js +++ b/src/jfq.js @@ -1,4 +1,4 @@ -import colorize from 'json-colorizer' +const { colorize } = require('json-colorizer'); import jsonata from 'jsonata' import readInput from 'read-input' import getopts from './getopts'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
json-colorizer
has been rewritten from scratch recently. Colorizing injfq
doesn't work with the latest version sayingThis simple patch makes it work again
The text was updated successfully, but these errors were encountered: