flowlint 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # FlowLint CLI
2
2
 
3
- ![Coverage](https://img.shields.io/badge/coverage-80.39%25-green)
3
+ ![Coverage](https://img.shields.io/badge/coverage-93.75%25-brightgreen)
4
4
 
5
5
  Command-line tool for static analysis of n8n workflows.
6
6
 
package/dist/cli.js CHANGED
@@ -23999,6 +23999,7 @@ function escapeXml(unsafe) {
23999
23999
  return "'";
24000
24000
  case '"':
24001
24001
  return """;
24002
+ /* c8 ignore next 2 */
24002
24003
  default:
24003
24004
  return c;
24004
24005
  }
@@ -24252,7 +24253,7 @@ var initCommand = new Command("init").description("Initialize FlowLint configura
24252
24253
  // src/cli.ts
24253
24254
  var import_meta = {};
24254
24255
  var program2 = new Command();
24255
- program2.name("flowlint").description("Static analysis tool for n8n workflows").version("0.9.0");
24256
+ program2.name("flowlint").description("Static analysis tool for n8n workflows").version("0.9.1");
24256
24257
  program2.addCommand(scanCommand);
24257
24258
  program2.addCommand(initCommand);
24258
24259
  if (import_meta.url === `file://${process.argv[1]}`) {