@gmb/bitmark-parser-generator 5.0.0 → 5.0.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/dist/cli/main.js CHANGED
@@ -9814,12 +9814,12 @@ var BITS = {
9814
9814
  tags: [
9815
9815
  {
9816
9816
  key: ConfigKey.property_iframeSrc,
9817
- description: "Iframe source URL, used to define the source of the iframe"
9817
+ description: "Iframe source URL, used to define the source of the iframe",
9818
+ minCount: 1
9818
9819
  },
9819
9820
  {
9820
9821
  key: ConfigKey.property_iframeName,
9821
- description: "Iframe name, used to define the name of the iframe",
9822
- minCount: 1
9822
+ description: "Iframe name, used to define the name of the iframe"
9823
9823
  }
9824
9824
  ]
9825
9825
  },
@@ -10169,7 +10169,7 @@ var instance2 = new Config();
10169
10169
  // src/generated/package_info.ts
10170
10170
  var PACKAGE_INFO = {
10171
10171
  "name": "@gmb/bitmark-parser-generator",
10172
- "version": "5.0.0",
10172
+ "version": "5.0.1",
10173
10173
  "license": "ISC"};
10174
10174
  var Environment = {
10175
10175
  unknown: "",
@@ -39472,7 +39472,7 @@ async function asyncInit() {
39472
39472
  }
39473
39473
  const program = new Command();
39474
39474
  const rootVersionOption = new Option("-v, --version", "Display version");
39475
- program.name("bitmark-parser").description("Bitmark parser command line interface").helpOption("-h, --help", "Display help for command").action(() => {
39475
+ program.name("bitmark-parser").description("Convert to and from bitmark formats.").helpOption("-h, --help", "Display help for command").action(() => {
39476
39476
  program.outputHelp();
39477
39477
  });
39478
39478
  program.addCommand(createConvertCommand());