Skip to content

Commit a6f8664

Browse files
author
Shuwen Qian
committed
Add CNAME to docs build
1 parent c1686d0 commit a6f8664

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Gulpfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ gulp.task('copy:docs', function() {
164164
var dist = gulp.src(BUILD+'**')
165165
.pipe(debug())
166166
.pipe(gulp.dest(BUILD_DOCS+'/bower_components/strand/dist'));
167-
return merge(assets, bowerComponents, dist);
167+
var cname = gulp.src('CNAME')
168+
.pipe(gulp.dest(BUILD_DOCS));
169+
return merge(assets, bowerComponents, dist, cname);
168170
});
169171

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

0 commit comments

Comments
 (0)