Skip to content

Commit

Permalink
remove forever as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Rod committed Feb 16, 2018
1 parent 6c3e5e1 commit b30d11b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/app/amqp-cli.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
# ## Imports

#
amqp = require 'amqp'
amqp = require 'amqp'
optimist = require 'optimist'

# ## Implementation

Expand Down Expand Up @@ -210,7 +211,7 @@ class AMQPCLI
# **main** reads the command line parameters and executes the appropriate command.
main:()->
# Set up the command line parameters using node-optimist.
optimist = require('optimist').options({
optimist = optimist.options({
'h': { alias: 'help', boolean: true, describe: "Show help" }
'b': { alias: 'broker', default: 'amqp://guest:guest@localhost:5672', describe: "Message broker to connect to" }
'e.name': { alias: 'exchange.name', describe: "Exchange name." }
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"author" : "Intellinote <https://www.intellinote.net/>",
"dependencies": {
"amqp" : "^0.2",
"forever" : "^0.15",
"inote-util" : "^1.14.2",
"optimist" : "^0.6"
},
Expand Down

0 comments on commit b30d11b

Please sign in to comment.