Skip to content

Commit

Permalink
Merge pull request #4 from yodlr/upgrade
Browse files Browse the repository at this point in the history
updated deps
  • Loading branch information
Ross Kukulinski committed Mar 10, 2015
2 parents 71dc5bf + cdd78b1 commit 25cc159
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var fs = require('fs');
var path = require('path');
var _ = require('underscore');
var _ = require('lodash');

var api = {};
module.exports = api;
Expand All @@ -17,4 +17,4 @@ _.each(files, function(f) {
/*
api.error = require('./lib/error.js');
api.tools = require('./lib/tools.js');
*/
*/
2 changes: 1 addition & 1 deletion lib/mail.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var Mail = function(config, callback) {
this._canSend = config.send || false;

// create smtp transport
this._smtpTransport = nodemailer.createTransport(config.transport, {
this._smtpTransport = nodemailer.createTransport({
service: config.service || 'SendGrid',
auth: {
user: config.connection.user,
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-yodlr",
"version": "1.0.0",
"version": "2.0.0",
"description": "Yodlr internal nodejs library for reusability",
"main": "index.js",
"directories": {
Expand All @@ -25,23 +25,23 @@
},
"homepage": "https://github.com/yodlr/node-yodlr",
"dependencies": {
"async": "0.2.10",
"bunyan": "~0.22.1",
"email-templates": "~0.1.4",
"lynx": "~0.0.11",
"nodemailer": "~0.6.1",
"swig": "~1.3.2",
"underscore": "~1.5.2",
"eventemitter2": "~0.4.13"
"async": "~0.9.0",
"bunyan": "~1.3.4",
"email-templates": "~1.2.0",
"eventemitter2": "~0.4.14",
"lodash": "^3.5.0",
"lynx": "~0.2.0",
"nodemailer": "~1.3.2",
"swig": "~1.4.2"
},
"devDependencies": {
"mocha": "~1.17.1",
"should": "~3.1.2",
"grunt": "~0.4.2",
"grunt-mocha-test": "~0.8.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "~0.5.3",
"mocha": "~2.2.1",
"should": "~5.1.0",
"grunt": "~0.4.5",
"grunt-mocha-test": "~0.12.7",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-cli": "~0.1.13",
"JSONStream": "~0.8.0"
"JSONStream": "~0.10.0"
}
}

0 comments on commit 25cc159

Please sign in to comment.