Skip to content
This repository was archived by the owner on Jan 14, 2019. It is now read-only.

Commit 1cd1d7c

Browse files
committed
Upgrade all dev deps
... And hope it doesn't break anything ...
1 parent 8b1f184 commit 1cd1d7c

File tree

3 files changed

+1138
-663
lines changed

3 files changed

+1138
-663
lines changed

Gruntfile.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* eslint-env node */
22
/* eslint-disable no-process-env, camelcase */
3+
const Path = require('path');
4+
35
module.exports = function(grunt) {
46

57
grunt.initConfig({
@@ -28,9 +30,9 @@ module.exports = function(grunt) {
2830
},
2931
webpack: {
3032
options: {
31-
context: 'lib/',
33+
context: Path.resolve(__dirname, './lib/'),
3234
output: {
33-
path: 'dist/',
35+
path: Path.resolve(__dirname, './dist/'),
3436
library: 'JsDiff',
3537
libraryTarget: 'umd'
3638
}
@@ -82,7 +84,7 @@ module.exports = function(grunt) {
8284
},
8385
sauce: {
8486
singleRun: true,
85-
browsers: ['sl_chrome', 'sl_firefox', 'sl_safari', 'sl_ie_11', 'sl_ie_9']
87+
browsers: ['sl_chrome', 'sl_firefox', 'sl_safari', 'sl_ie_11']
8688
}
8789
},
8890

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,39 +28,39 @@
2828
},
2929
"dependencies": {},
3030
"devDependencies": {
31-
"async": "^1.4.2",
31+
"async": "^2.5.0",
3232
"babel-core": "^6.0.0",
33-
"babel-loader": "^6.0.0",
33+
"babel-loader": "^7.1.2",
3434
"babel-preset-es2015-mod": "^6.3.13",
3535
"babel-preset-es3": "^1.0.1",
3636
"chai": "^4.1.2",
3737
"colors": "^1.1.2",
38-
"grunt": "^0.4.5",
38+
"grunt": "^1.0.1",
3939
"grunt-babel": "^7.0.0",
4040
"grunt-clean": "^0.4.0",
41-
"grunt-cli": "^0.1.13",
41+
"grunt-cli": "^1.2.0",
4242
"grunt-contrib-clean": "^1.0.0",
4343
"grunt-contrib-copy": "^1.0.0",
44-
"grunt-contrib-uglify": "^1.0.0",
44+
"grunt-contrib-uglify": "^3.0.1",
4545
"grunt-contrib-watch": "^1.0.0",
4646
"grunt-eslint": "^20.1.0",
47-
"grunt-karma": "^0.12.1",
48-
"grunt-mocha-istanbul": "^3.0.1",
49-
"grunt-mocha-test": "^0.12.7",
50-
"grunt-webpack": "^1.0.11",
47+
"grunt-karma": "^2.0.0",
48+
"grunt-mocha-istanbul": "^5.0.2",
49+
"grunt-mocha-test": "^0.13.2",
50+
"grunt-webpack": "^3.0.2",
5151
"istanbul": "github:kpdecker/istanbul",
52-
"karma": "^0.13.11",
53-
"karma-mocha": "^0.2.0",
52+
"karma": "^1.7.1",
53+
"karma-mocha": "^1.3.0",
5454
"karma-mocha-reporter": "^2.0.0",
5555
"karma-phantomjs-launcher": "^1.0.0",
56-
"karma-sauce-launcher": "^0.3.0",
56+
"karma-sauce-launcher": "^1.2.0",
5757
"karma-sourcemap-loader": "^0.3.6",
58-
"karma-webpack": "^1.7.0",
59-
"mocha": "^2.3.3",
58+
"karma-webpack": "^2.0.4",
59+
"mocha": "^3.5.0",
6060
"phantomjs-prebuilt": "^2.1.5",
6161
"semver": "^5.0.3",
62-
"webpack": "^1.12.2",
63-
"webpack-dev-server": "^1.12.0"
62+
"webpack": "^3.5.5",
63+
"webpack-dev-server": "^2.7.1"
6464
},
6565
"optionalDependencies": {},
6666
"babel": {

0 commit comments

Comments
 (0)