Skip to content

Commit

Permalink
Merge branch 'grunt-conventional-changelog-support' of git://github.c…
Browse files Browse the repository at this point in the history
…om/PascalPrecht/ui-router into PascalPrecht-grunt-conventional-changelog-support

Conflicts:
	Gruntfile.js
	package.json
  • Loading branch information
nateabele committed Dec 5, 2013
2 parents dc75ea0 + d5fba25 commit cd6cd1d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
25 changes: 15 additions & 10 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,23 @@ module.exports = function (grunt) {
}
}
},
karma: {
options: {
configFile: 'config/karma.js'
},
unit: {
singleRun: true
karma: {
options: {
configFile: 'config/karma.js'
},
unit: {
singleRun: true
},
background: {
background: true,
browsers: [ grunt.option('browser') || 'PhantomJS' ]
}
},
background: {
background: true,
browsers: [ grunt.option('browser') || 'PhantomJS' ]
changelog: {
options: {
dest: 'CHANGELOG.md'
}
}
}
});

grunt.registerTask('default', ['build', 'jshint', 'karma:unit']);
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"karma-coffee-preprocessor": "~0.1.0",
"karma": "~0.10.1",
"karma-phantomjs-launcher": "~0.1.0",
"load-grunt-tasks": "~0.2.0"
"load-grunt-tasks": "~0.2.0",
"grunt-conventional-changelog": "~1.0.0"
}
}

0 comments on commit cd6cd1d

Please sign in to comment.