Skip to content

Commit e127226

Browse files
committed
include non minified package/file in the distribution
1 parent edec694 commit e127226

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

gulpfile.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,18 @@ gulp.task('minify',function(){
6969
});
7070

7171

72-
gulp.task('default',['minify','bootstrap','bootstrap-datepicker']);
72+
gulp.task('non-minified-dist',function(){
73+
gulp.src([
74+
'./src/module.js',
75+
'./src/services/*.js',
76+
'./src/directives/*.js'
77+
])
78+
.pipe(concat('schema-form.js'))
79+
.pipe(gulp.dest('./dist/'));
80+
});
81+
82+
83+
gulp.task('default',['minify','bootstrap','bootstrap-datepicker','non-minified-dist']);
7384

7485

7586
gulp.task('watch', function() {

0 commit comments

Comments
 (0)