githolon 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +1 -1
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -1094,7 +1094,7 @@ function parseArgs(argv) {
1094
1094
  return { kind, name, outDir, force, dryRun };
1095
1095
  }
1096
1096
  async function main(argv) {
1097
- if (argv.length === 0 || argv[0] === "-h" || argv[0] === "--help") {
1097
+ if (argv.length === 0 || argv.includes("-h") || argv.includes("--help")) {
1098
1098
  process.stdout.write(USAGE);
1099
1099
  return 0;
1100
1100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githolon",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "githolon — the Nomos developer CLI: Rails-style generators for @githolon/dsl domains + the package compiler. Kernel-independent.",
6
6
  "license": "SEE LICENSE IN LICENSE.md",