Skip to content

Commit

Permalink
Fixed dependencies in both Bower and NPM.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmariuzzo committed Jul 28, 2016
1 parent e2e163b commit 9e3edc0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ module.exports = (grunt) => {
options: {
specs: 'tests/specs/*_spec.js',
vendor: [
'bower_components/jquery/dist/jquery.min.js',
'bower_components/jasmine-jquery/lib/jasmine-jquery.js'
'node_modules/jquery/dist/jquery.min.js',
'node_modules/jasmine-jquery/lib/jasmine-jquery.js'
],
helpers: [
'tests/helpers.js'
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"tests"
],
"dependencies": {
"jquery": "~2.1.1"
"jquery": "^2.0.0"
}
}
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@
},
"scripts": {
"test": "grunt travis --verbose"
},
"dependencies": {
"jquery": "^2.2.4"
}
}

0 comments on commit 9e3edc0

Please sign in to comment.