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

Fix/windows #16

Merged
merged 10 commits into from Nov 14, 2017
10 changes: 10 additions & 0 deletions .travis.yml
@@ -0,0 +1,10 @@
os:
- linux
- osx
language: node_js
node_js:
- "6"
- "7"
- "8"
script:
- npm test
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');