-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
CLI version #3
Labels
Comments
We need an easy way to support all modules' config options. To not specify them manually in the code, I guess, we could just convert CLI options to an options object. For example: htmlnano --removeComments=false minifyCss-preset=default is converted to the following options const options = {
removeComments: false,
minifyCss: {
preset: 'default',
}
}; |
Also, the CLI should support external configs (#63). |
@maltsev , Do I understand correctly, that there is no CLI as of yet? |
@hoijui right. We don't have it yet. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: