File configuration fails with input & output · Issue #313 · posthtml/posthtml-cli

Hi, I'm running into issues using the CLI when I specify the input or output with a configuration file.

For example, this command & configuration works:
posthtml src/views/*.html -o public -c posthtml.json

posthtml.json

{
  "plugins": {
    "posthtml-modules": {
      "root": "./src/views"
    }
  }
}

But this command & configuration fails (no files are outputted):
posthtml -c posthtml.json

posthtml.json

{
  "input": "src/views/*.html",
  "output": "public",
  "plugins": {
    "posthtml-modules": {
      "root": "./src/views"
    }
  }
}

Am I doing something wrong?

Thank you for your time.