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

Commit

Permalink
Fix/windows (#16)
Browse files Browse the repository at this point in the history
* Fix: Fixes #12 - running commands on Windows.

* Update: Updated builder version and added blob package as a known fix to import issue.

* Update: Updating the package lock file.

* Adding travis configuration.

* Update: Updated builder version.

* Update: Updated tests to test actuall build

* Bumped version for the release.

* Update: Adding cleanup function in the build test

* Fix: Fixing dev test

* Update: Removing dev run test until programatic way to disable server is ready.
  • Loading branch information
jarrodek committed Nov 14, 2017
1 parent 8a0b46c commit 02ea322
Show file tree
Hide file tree
Showing 10 changed files with 342 additions and 33 deletions.
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');

0 comments on commit 02ea322

Please sign in to comment.