Comparing version 0.1.7 to 0.1.8
@@ -8,2 +8,3 @@ #!/usr/bin/env node | ||
var url = require('url'); | ||
var rimraf = require('rimraf'); | ||
require('dotenv').config(); | ||
@@ -22,2 +23,4 @@ var proxyURL = process.env.HUBOT_DIRECT_PROXY_URL || process.env.HTTPS_PROXY || process.env.HTTP_PROXY; | ||
rimraf.sync('storage.local'); | ||
direct.setOptions({ | ||
@@ -33,2 +36,1 @@ host:url.parse(endpoint).host, endpoint:endpoint, proxyURL: proxyURL | ||
}); | ||
#!/usr/bin/env node | ||
// daab login | ||
// daab logout | ||
@@ -4,0 +4,0 @@ var program = require('commander'); |
@@ -18,3 +18,4 @@ #!/usr/bin/env node | ||
var hubot = spawn('bin/hubot', ['start'].concat(process.argv.slice(2)), { | ||
var cmd = process.platform === 'win32' ? 'bin\\hubot.cmd' : 'bin/hubot'; | ||
var hubot = spawn(cmd, ['start'].concat(process.argv.slice(2)), { | ||
detached: true, | ||
@@ -21,0 +22,0 @@ stdio: 'inherit' |
@@ -11,4 +11,5 @@ #!/usr/bin/env node | ||
var hubot = spawn('bin/hubot', ['stop'].concat(process.argv.slice(2)), { | ||
var cmd = process.platform === 'win32' ? 'bin\\hubot.cmd' : 'bin/hubot'; | ||
var hubot = spawn(cmd, ['stop'].concat(process.argv.slice(2)), { | ||
stdio: 'inherit' | ||
}); |
{ | ||
"name": "daab", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "daab (direct agent assist bot) commandline interface", | ||
@@ -28,6 +28,7 @@ "main": "lib/daab.js", | ||
"commander": "^2.8.1", | ||
"direct-js": "^0.1.26", | ||
"dotenv": "^4.0.0", | ||
"read": "^1.0.7", | ||
"direct-js": "^0.1.26", | ||
"dotenv": "^4.0.0" | ||
"rimraf": "^2.6.2" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8860
234
5
14
+ Addedrimraf@^2.6.2
+ Addedrimraf@2.7.1(transitive)