Skip to content

Commit

Permalink
chore(travis): prepend to changelog by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Apr 29, 2014
1 parent 94bcbf7 commit c79a88e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ gulp.task('watch', ['build'], function() {
});

gulp.task('changelog', function(done) {
var file = argv.prepend ? __dirname + '/CHANGELOG.md' : '';
var file = argv.standalone ? '' : __dirname + '/CHANGELOG.md';
var subtitle = argv.subtitle || '"' + pkg.codename + '"';
var toHtml = !!argv.html;
var dest = argv.dest || 'CHANGELOG.md';
Expand Down
2 changes: 1 addition & 1 deletion scripts/travis/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function run {

VERSION_NAME="nightly"

gulp changelog --no-prepend \
gulp changelog --standalone \
--html=true \
--subtitle="(changes since $OLD_VERSION)" \
--dest="dist/CHANGELOG.html" \
Expand Down

0 comments on commit c79a88e

Please sign in to comment.