yarramate 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -535,6 +535,9 @@ const runCompile = (options, cwd) => {
535
535
  };
536
536
  export function runCli(args, cwd = process.cwd()) {
537
537
  const [command, ...options] = args;
538
+ if (command === '--help' || command === '-h' || command === 'help') {
539
+ return { exitCode: 0, stdout: usage, stderr: '' };
540
+ }
538
541
  if (command === 'init') {
539
542
  return runInit(options, cwd);
540
543
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yarramate",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Tool-neutral semantic architecture engine and guided methodology",
5
5
  "license": "MIT",
6
6
  "repository": {