Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
Fix: Fixes #12 - running commands on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodek committed Nov 13, 2017
1 parent 8a0b46c commit fb3bc33
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/api-console-cli-build.js
@@ -0,0 +1,5 @@
// For windows (!)
// Apparently the commander module has an issue and on windows it ignores
// cli cmmand name and try to use module name instead.
// https://github.com/tj/commander.js/issues/714
require('./api-console-build');
5 changes: 5 additions & 0 deletions bin/api-console-cli-dev.js
@@ -0,0 +1,5 @@
// For windows (!)
// Apparently the commander module has an issue and on windows it ignores
// cli cmmand name and try to use module name instead.
// https://github.com/tj/commander.js/issues/714
require('./api-console-dev');
5 changes: 5 additions & 0 deletions bin/api-console-cli-generate-json.js
@@ -0,0 +1,5 @@
// For windows (!)
// Apparently the commander module has an issue and on windows it ignores
// cli cmmand name and try to use module name instead.
// https://github.com/tj/commander.js/issues/714
require('./api-console-generate-json');
5 changes: 5 additions & 0 deletions bin/api-console-cli-serve.js
@@ -0,0 +1,5 @@
// For windows (!)
// Apparently the commander module has an issue and on windows it ignores
// cli cmmand name and try to use module name instead.
// https://github.com/tj/commander.js/issues/714
require('./api-console-serve');

0 comments on commit fb3bc33

Please sign in to comment.