Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Add release:config task
Browse files Browse the repository at this point in the history
  • Loading branch information
atdrago committed Jul 1, 2016
1 parent 21e4cba commit 50de4fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ gulp.task('release:lib', () => {
]).pipe(gulp.dest('release/lib'));
});

gulp.task('release:config', () => {
return gulp.src([
'config/**/*.js'
]).pipe(gulp.dest('release/config'));
});

gulp.task('release:test', () => {
return gulp.src([
'test/**/*.js',
Expand All @@ -117,7 +123,7 @@ gulp.task('release', () => {
return runSequence(
'release:clean',
[ 'js:index', 'js:settings', 'sass'],
['release:root', 'release:resources', 'release:view', 'release:lib', 'release:test']
['release:root', 'release:resources', 'release:view', 'release:lib', 'release:config', 'release:test']
);
});

Expand Down

0 comments on commit 50de4fb

Please sign in to comment.