Skip to content

Commit 9e3edc0

Browse files
committed
Fixed dependencies in both Bower and NPM.
1 parent e2e163b commit 9e3edc0

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ module.exports = (grunt) => {
5858
options: {
5959
specs: 'tests/specs/*_spec.js',
6060
vendor: [
61-
'bower_components/jquery/dist/jquery.min.js',
62-
'bower_components/jasmine-jquery/lib/jasmine-jquery.js'
61+
'node_modules/jquery/dist/jquery.min.js',
62+
'node_modules/jasmine-jquery/lib/jasmine-jquery.js'
6363
],
6464
helpers: [
6565
'tests/helpers.js'

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"tests"
2727
],
2828
"dependencies": {
29-
"jquery": "~2.1.1"
29+
"jquery": "^2.0.0"
3030
}
3131
}

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,8 @@
3636
},
3737
"scripts": {
3838
"test": "grunt travis --verbose"
39+
},
40+
"dependencies": {
41+
"jquery": "^2.2.4"
3942
}
4043
}

0 commit comments

Comments
 (0)