Skip to content

Commit 856f2d8

Browse files
author
Laszlo Moczo
committed
Update dependencies with test fixes
Update dependencies with test fixes
1 parent 9608e05 commit 856f2d8

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

Gruntfile.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ module.exports = function(grunt) {
4646
file: 'test/fixtures/_component.json',
4747
changelog: 'test/fixtures/_CHANGELOG.md',
4848
additionalFiles: ['test/fixtures/_bower.json'],
49-
changelogText: '### <%= version %>\n',
50-
commitMessage: 'v<%= version %>'
49+
changelogText: grunt.template.process('### <%= version %>\n', {data: {'version': '0.0.13'}}),
50+
commitMessage: grunt.template.process('v<%= version %>', {data: {'version': '0.0.13'}})
5151
}
5252
},
5353
absolute: {
@@ -78,25 +78,25 @@ module.exports = function(grunt) {
7878
setup: {
7979
test: {
8080
files: [{
81-
src: 'test/fixtures/component.json',
81+
from: 'test/fixtures/component.json',
8282
dest: 'test/fixtures/_component.json'
8383
},{
84-
src: 'test/fixtures/bower.json',
84+
from: 'test/fixtures/bower.json',
8585
dest: 'test/fixtures/_bower.json'
8686
},{
87-
src: 'test/fixtures/CHANGELOG.md',
87+
from: 'test/fixtures/CHANGELOG.md',
8888
dest: 'test/fixtures/_CHANGELOG.md'
8989
},{
90-
src: 'test/fixtures/bower.json',
90+
from: 'test/fixtures/bower.json',
9191
dest: 'test/fixtures/_bower-absolute.json'
9292
},{
93-
src: 'test/fixtures/component.json',
93+
from: 'test/fixtures/component.json',
9494
dest: 'test/fixtures/_component-patch.json'
9595
},{
96-
src: 'test/fixtures/component.json',
96+
from: 'test/fixtures/component.json',
9797
dest: 'test/fixtures/_component-minor.json'
9898
},{
99-
src: 'test/fixtures/component.json',
99+
from: 'test/fixtures/component.json',
100100
dest: 'test/fixtures/_component-major.json'
101101
}]
102102
}
@@ -117,7 +117,7 @@ module.exports = function(grunt) {
117117

118118
grunt.registerMultiTask('setup', 'Setup test fixtures', function(){
119119
this.files.forEach(function(f){
120-
grunt.file.copy(f.src, f.dest);
120+
grunt.file.copy(f.from, f.dest);
121121
});
122122
});
123123

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
"author": "Dave Geddes",
2424
"license": "MIT",
2525
"dependencies": {
26-
"shelljs": "^0.5.1",
27-
"semver": "^4.3.6",
28-
"superagent": "^1.2.0",
26+
"shelljs": "^0.7.0",
27+
"semver": "^5.1.0",
28+
"superagent": "^1.8.3",
2929
"q": "^1.4.1"
3030
},
3131
"devDependencies": {
32-
"grunt": "^0.4.5",
33-
"grunt-contrib-nodeunit": "^0.4.1",
34-
"grunt-contrib-clean": "^0.6.0"
32+
"grunt": "^1.0.1",
33+
"grunt-contrib-nodeunit": "^1.0.0",
34+
"grunt-contrib-clean": "^1.0.0"
3535
},
3636
"peerDependencies": {
37-
"grunt": ">=0.4.0"
37+
"grunt": ">=1.0.1"
3838
}
3939
}

0 commit comments

Comments
 (0)