We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb97d06 commit 4a3b6d2Copy full SHA for 4a3b6d2
gulpfile.js
100644
100755
@@ -5,10 +5,16 @@ var gulp = require('gulp'),
5
6
/*JS task*/
7
gulp.task('dist', function () {
8
- gulp.src([ 'assets/js/input.js' ])
+ gulp.src([ 'assets/js/input-5.js' ])
9
.pipe(plugins.jshint())
10
.pipe(plugins.uglify())
11
- .pipe(plugins.concat('input.min.js'))
+ .pipe(plugins.concat('input-5.min.js'))
12
+ .pipe(gulp.dest('assets/js/'));
13
+
14
+ gulp.src([ 'assets/js/input-56.js' ])
15
+ .pipe(plugins.jshint())
16
+ .pipe(plugins.uglify())
17
+ .pipe(plugins.concat('input-56.min.js'))
18
.pipe(gulp.dest('assets/js/'));
19
20
return gulp.src([ 'assets/css/style.css' ])
0 commit comments