flowlint 0.8.5 → 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 +1 -1
- package/dist/cli.js +2 -1
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
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.
|
|
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]}`) {
|