Skip to content

Commit

Permalink
Release candidate 1 for Nodemailer 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Jul 10, 2014
1 parent 73781b1 commit 3be7d54
Show file tree
Hide file tree
Showing 17 changed files with 1,603 additions and 29 deletions.
4 changes: 3 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

"predef": [
"describe",
"it"
"it",
"beforeEach",
"afterEach"
]
}
9 changes: 2 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@ language: node_js
node_js:
- "0.10"
- "0.11"

before_install:
- npm update -g grunt-cli

- npm install -g grunt-cli
notifications:
email:
recipients:
- andris@kreata.ee
on_success: change
on_failure: change
- andris@kreata.ee
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: ['src/*.js', 'test/*.js'],
all: ['src/*.js', 'test/*.js', 'examples/*.js'],
options: {
jshintrc: '.jshintrc'
}
Expand All @@ -16,7 +16,7 @@ module.exports = function(grunt) {
options: {
reporter: 'spec'
},
src: ['test/*-unit.js']
src: ['test/*-test.js']
}
}
});
Expand Down
Loading

0 comments on commit 3be7d54

Please sign in to comment.