Skip to content

Commit fbb6d72

Browse files
committed
Bump all build deps to latest
1 parent 03e8fc1 commit fbb6d72

File tree

6 files changed

+26
-24
lines changed

6 files changed

+26
-24
lines changed

.jshintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"predef": [
66
"console",
77
"module",
8-
"require"
8+
"require",
9+
"JSON"
910
]
1011
}

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ language: node_js
33
node_js:
44
- "0.12"
55
script:
6-
- ./node_modules/.bin/grunt test
6+
- node_modules/.bin/grunt test

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
var proxyquire = require('proxyquireify');
2-
var versionify = require('browserify-versionify');
3-
41
module.exports = function(grunt) {
52
"use strict";
63

74
var _ = require('lodash');
85
var path = require('path');
96
var through = require('through2');
7+
var proxyquire = require('proxyquireify');
8+
var versionify = require('browserify-versionify');
109

1110
var excludedPlugins = [
1211
'react-native'
@@ -132,7 +131,8 @@ module.exports = function(grunt) {
132131
sourceMappingURL: function (dest) {
133132
return path.basename(dest, '.js') + '.map';
134133
},
135-
preserveComments: 'some',
134+
// Only preserve comments that start with (!)
135+
preserveComments: /^!/,
136136
compress: {
137137
dead_code: true,
138138
global_defs: {

package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,22 @@
1717
"chai": "2.3.0",
1818
"grunt": "^0.4.5",
1919
"grunt-browserify": "^4.0.1",
20-
"grunt-cli": "~0.1.9",
21-
"grunt-contrib-clean": "~0.4.0",
22-
"grunt-contrib-concat": "~0.3.0",
23-
"grunt-contrib-connect": "~0.5.0",
24-
"grunt-contrib-copy": "~0.4.1",
25-
"grunt-contrib-jshint": "~0.6.3",
26-
"grunt-contrib-uglify": "~0.2.2",
27-
"grunt-gitinfo": "~0.1.1",
28-
"grunt-mocha": "~0.4.1",
29-
"grunt-release": "~0.6.0",
30-
"grunt-s3": "~0.2.0-alpha.3",
20+
"grunt-cli": "^0.1.13",
21+
"grunt-contrib-clean": "^0.7.0",
22+
"grunt-contrib-concat": "^0.5.1",
23+
"grunt-contrib-connect": "^0.11.2",
24+
"grunt-contrib-copy": "^0.8.2",
25+
"grunt-contrib-jshint": "^0.11.3",
26+
"grunt-contrib-uglify": "^0.11.0",
27+
"grunt-gitinfo": "^0.1.7",
28+
"grunt-mocha": "^0.4.15",
29+
"grunt-release": "^0.13.0",
30+
"grunt-s3": "0.2.0-alpha.3",
3131
"grunt-sri": "mattrobenolt/grunt-sri#pretty",
32-
"lodash": "~2.4.0",
33-
"proxyquireify": "^3.0.0",
34-
"sinon": "~1.7.3",
32+
"lodash": "^3.10.1",
33+
"mocha": "^1.21.5",
34+
"proxyquireify": "^3.0.1",
35+
"sinon": "1.7.3",
3536
"through2": "^2.0.0"
3637
},
3738
"keywords": [

test/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<head>
44
<title>Raven.js Test Suite</title>
55
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6-
<link rel="stylesheet" href="../node_modules/grunt-mocha/node_modules/mocha/mocha.css" />
6+
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
77
</head>
88
<body>
99
<div id="mocha"></div>
1010
<!-- Mocha -->
11-
<script src="../node_modules/grunt-mocha/node_modules/mocha/mocha.js"></script>
11+
<script src="../node_modules/mocha/mocha.js"></script>
1212
<script src="../node_modules/chai/chai.js"></script>
1313
<script>
1414
mocha.ui('bdd');

test/integration/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<head>
44
<title>Raven.js Test Suite</title>
55
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6-
<link rel="stylesheet" href="../../node_modules/grunt-mocha/node_modules/mocha/mocha.css" />
6+
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
77
</head>
88
<body>
99
<div id="mocha"></div>
1010
<!-- Mocha -->
11-
<script src="../../node_modules/grunt-mocha/node_modules/mocha/mocha.js"></script>
11+
<script src="../../node_modules/mocha/mocha.js"></script>
1212
<script src="../../node_modules/chai/chai.js"></script>
1313
<script>
1414
mocha.ui('bdd');

0 commit comments

Comments
 (0)