Skip to content

Commit

Permalink
Add CNAME to docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuwen Qian committed Mar 3, 2016
1 parent c1686d0 commit a6f8664
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ gulp.task('copy:docs', function() {
var dist = gulp.src(BUILD+'**')
.pipe(debug())
.pipe(gulp.dest(BUILD_DOCS+'/bower_components/strand/dist'));
return merge(assets, bowerComponents, dist);
var cname = gulp.src('CNAME')
.pipe(gulp.dest(BUILD_DOCS));
return merge(assets, bowerComponents, dist, cname);
});

gulp.task('sass:docs', function() {
Expand Down

0 comments on commit a6f8664

Please sign in to comment.