Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit c23147e

Browse files
author
Marcel Gerber
committed
Merge pull request #12059 from ficristo/update-dependencies
Update a couple of dependencies in package.json at the root
2 parents b7e0a22 + 36983a2 commit c23147e

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

Gruntfile.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ module.exports = function (grunt) {
2525
'use strict';
2626

2727
// load dependencies
28-
require('load-grunt-tasks')(grunt, {pattern: ['grunt-contrib-*', 'grunt-targethtml', 'grunt-usemin', 'grunt-cleanempty', 'grunt-eslint']});
28+
require('load-grunt-tasks')(grunt, {
29+
pattern: [
30+
'grunt-*',
31+
'!grunt-cli',
32+
'!grunt-lib-phantomjs',
33+
'!grunt-template-jasmine-requirejs'
34+
]
35+
});
2936
grunt.loadTasks('tasks');
3037

3138
// Project configuration.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"grunt-cli": "0.1.9",
2020
"phantomjs": "1.9.18",
2121
"grunt-lib-phantomjs": "0.3.0",
22-
"grunt-eslint": "17.1.0",
22+
"grunt-eslint": "18.1.0",
2323
"grunt-contrib-watch": "0.4.3",
2424
"grunt-contrib-jasmine": "0.4.2",
2525
"grunt-template-jasmine-requirejs": "0.1.0",
@@ -33,8 +33,8 @@
3333
"grunt-contrib-concat": "0.3.0",
3434
"grunt-targethtml": "0.2.6",
3535
"grunt-usemin": "0.1.11",
36-
"load-grunt-tasks": "0.2.0",
37-
"q": "0.9.2",
36+
"load-grunt-tasks": "3.5.0",
37+
"q": "1.4.1",
3838
"semver": "^4.1.0",
3939
"xmldoc": "^0.1.2",
4040
"grunt-cleanempty": "1.0.3"

src/config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"grunt-cli": "0.1.9",
4343
"phantomjs": "1.9.18",
4444
"grunt-lib-phantomjs": "0.3.0",
45-
"grunt-eslint": "17.1.0",
45+
"grunt-eslint": "18.1.0",
4646
"grunt-contrib-watch": "0.4.3",
4747
"grunt-contrib-jasmine": "0.4.2",
4848
"grunt-template-jasmine-requirejs": "0.1.0",
@@ -56,8 +56,8 @@
5656
"grunt-contrib-concat": "0.3.0",
5757
"grunt-targethtml": "0.2.6",
5858
"grunt-usemin": "0.1.11",
59-
"load-grunt-tasks": "0.2.0",
60-
"q": "0.9.2",
59+
"load-grunt-tasks": "3.5.0",
60+
"q": "1.4.1",
6161
"semver": "^4.1.0",
6262
"xmldoc": "^0.1.2",
6363
"grunt-cleanempty": "1.0.3"

src/extensions/default/JavaScriptCodeHints/HintUtils.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ define(function (require, exports, module) {
9292
case "number":
9393
case "regexp":
9494
case "string":
95-
// exclude variable & param decls
96-
case "def":
95+
case "def": // exclude variable & param decls
9796
return false;
9897
case "string-2":
9998
// exclude strings inside a regexp

0 commit comments

Comments
 (0)