forked from rajeshwarpatlolla/ionic-timepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
executable file
·42 lines (36 loc) · 1.09 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
var gulp = require('gulp');
var del = require('del');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var ngHtml2Js = require("gulp-ng-html2js");
var minifyHtml = require("gulp-minify-html");
var css2js = require("gulp-css2js");
gulp.task('html2js', function () {
return gulp.src(['./src/*.html'])
.pipe(minifyHtml())
.pipe(ngHtml2Js({
moduleName: "ionic-timepicker.templates"
}))
.pipe(concat("templates.js"))
//.pipe(uglify())
.pipe(gulp.dest("./dist"));
});
gulp.task('css2js', function () {
return gulp.src("./src/*.css")
.pipe(css2js())
//.pipe(uglify())
.pipe(gulp.dest("./dist/"));
});
gulp.task('make-bundle', ['del', 'html2js', 'css2js'], function () {
return gulp.src(['dist/*', './src/*.js'])
.pipe(concat('ionic-timepicker.bundle.min.js'))
.pipe(uglify())
.pipe(gulp.dest('dist/'));
});
gulp.task('del-temp-files', ['make-bundle'], function () {
del(['dist/templates.js', 'dist/ionic-timepicker.styles.js']);
});
gulp.task('del', function () {
del(['dist/*']);
});
gulp.task('build', ['del-temp-files']);