-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
107 lines (95 loc) · 2.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
var gulp = require('gulp');
var webserver = require('gulp-webserver');
var templateCache = require('gulp-angular-templatecache');
var minifyHtml = require('gulp-htmlmin');
var concat = require('gulp-concat');
var streamqueue = require('streamqueue');
var uglify = require('gulp-uglify');
var jscs = require('gulp-jscs');
var umd = require('gulp-umd');
var banner = ['/**',
' * <%= bower.name %> - <%= bower.description %>',
' * @version v<%= bower.version %>',
' * @link <%= bower.homepage %>',
' * @license <%= bower.license %>',
' */',
''].join('\n');
gulp.task('minify', function() {
var stream = streamqueue({objectMode: true});
stream.queue(
gulp.src('./src/*.html')
.pipe(minifyHtml({
empty: true,
spare: true,
quotes: true
}))
.pipe(templateCache({
module: 'schemaForm',
root: 'directives/decorators/bootstrap/ui-grid/'
}))
);
stream.queue(gulp.src('./src/*.js'));
stream.done()
.pipe(concat('angular-schema-form-ui-grid.min.js'))
.pipe(umd({
dependencies: function() {
return [
{
name: 'schemaForm',
amd:"angular-schema-form",
cjs: 'angular-schema-form'
}
];
},
exports: function() {return 'angularSchemaFormUIGrid';},
namespace: function() {return 'angularSchemaFormUIGrid';}
}))
.pipe(uglify())
.pipe(gulp.dest('./dist'));
});
gulp.task('non-minified-dist', function() {
var stream = streamqueue({objectMode: true});
stream.queue(
gulp.src('./src/*.html')
.pipe(templateCache({
module: 'schemaForm',
root: 'directives/decorators/bootstrap/ui-grid/'
}))
);
stream.queue(gulp.src('./src/*.js'));
stream.done()
.pipe(concat('angular-schema-form-bootstrap-ui-grid.js'))
.pipe(umd({
dependencies: function() {
return [
{
name: 'schemaForm',
amd:"angular-schema-form",
cjs: 'angular-schema-form'
}
];
},
exports: function() {return 'angularSchemaFormUIGrid';},
namespace: function() {return 'angularSchemaFormUIGrid';}
}))
.pipe(gulp.dest('./dist'));
});
gulp.task('jscs', function() {
gulp.src('./src/**/*.js')
.pipe(jscs());
});
gulp.task('default', [
'minify',
'non-minified-dist'
]);
gulp.task('watch', function() {
gulp.watch('./src/**/*', ['default']);
});
gulp.task('webserver', function() {
gulp.src('.')
.pipe(webserver({
livereload: true,
port: 8001,
open: true
}));
});