Skip to content

Commit 40e9973

Browse files
committed
Merge pull request #34 from bboyle/update-build
update build environment
2 parents b78c249 + 320a479 commit 40e9973

File tree

13 files changed

+315
-325
lines changed

13 files changed

+315
-325
lines changed

.jshintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"unused": true,
1111
"boss": true,
1212
"eqnull": true,
13-
"node": true
13+
"node": true,
14+
"jquery": true
1415
}

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
sudo: false
12
language: node_js
23
node_js:
3-
- "0.10"
4+
- "4.3.0"
45
before_script:
56
- npm install -g grunt-cli
67
- npm install -g bower

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ module.exports = function( grunt ) {
1515
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
1616

1717
browsers: [
18-
{ browserName: 'Internet Explorer' },
18+
{ browserName: 'Internet Explorer', version: '11' },
1919
{ browserName: 'Chrome' },
2020
{ browserName: 'iPhone' },
2121
{ browserName: 'android' },
22-
{ browserName: 'Firefox' },
22+
{ browserName: 'Firefox', platform: 'Linux' },
2323
// old IE
2424
{ browserName: 'Internet Explorer', version: '9' },
2525
{ browserName: 'Internet Explorer', version: '8' },

Readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[![Build Status](https://travis-ci.org/bboyle/relevance.svg?branch=travis)](https://travis-ci.org/bboyle/relevance)
2-
[![devDependencies](https://david-dm.org/bboyle/relevance/dev-status.svg)](https://david-dm.org/bboyle/relevance#info=devDependencies)
2+
[![bitHound Overall Score](https://www.bithound.io/github/bboyle/relevance/badges/score.svg)](https://www.bithound.io/github/bboyle/relevance)
3+
[![bitHound Dependencies](https://www.bithound.io/github/bboyle/relevance/badges/dependencies.svg)](https://www.bithound.io/github/bboyle/relevance/gh-pages/dependencies/npm)
4+
[![bitHound Dev Dependencies](https://www.bithound.io/github/bboyle/relevance/badges/devDependencies.svg)](https://www.bithound.io/github/bboyle/relevance/gh-pages/dependencies/npm)
35

46
[![Sauce Test Status](https://saucelabs.com/browser-matrix/benboyle-relevance.svg)](https://saucelabs.com/u/benboyle-relevance)
57

libs/jquery-loader.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
path = 'http://code.jquery.com/jquery-' + jqversion[1] + '.js';
99
}
1010
// This is the only time I'll ever use document.write, I promise!
11-
document.write('<script src="' + path + '"></script>');
11+
/* jshint -W060 */
12+
document.write('<script src="' + path + '"></script>'); // eslint-disable-line no-implied-eval
13+
/* jshint +W060 */
1214
}());

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@
3434
},
3535
"devDependencies": {
3636
"grunt": "^0.4.5",
37-
"grunt-contrib-clean": "^0.6.0",
38-
"grunt-contrib-concat": "^0.5.0",
39-
"grunt-contrib-connect": "^0.9.0",
40-
"grunt-contrib-jshint": "^0.11.0",
41-
"grunt-contrib-qunit": "^0.5.2",
42-
"grunt-contrib-uglify": "^0.7.0",
37+
"grunt-contrib-clean": "^0.7.0",
38+
"grunt-contrib-concat": "^0.5.1",
39+
"grunt-contrib-connect": "^0.11.2",
40+
"grunt-contrib-jshint": "^0.12.0",
41+
"grunt-contrib-qunit": "^1.0.1",
42+
"grunt-contrib-uglify": "^0.11.1",
4343
"grunt-contrib-watch": "^0.6.1",
44-
"grunt-saucelabs": "^8.6.0",
45-
"qunitjs": "^1.17.1"
44+
"grunt-saucelabs": "^8.6.2",
45+
"qunitjs": "^1.21.0"
4646
},
4747
"scripts": {
4848
"test": "grunt test",

0 commit comments

Comments
 (0)