-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
executable file
·129 lines (107 loc) · 2.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*global -$ */
'use strict';
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var run = require('gulp-run');
gulp.task('css', function () {
return gulp.src('app/styles/*.css')
.pipe(gulp.dest('.tmp/styles'))
.pipe(gulp.dest('dist/styles'))
.pipe(reload({stream: true}));
});
gulp.task('html', function () {
var assets = $.useref.assets({searchPath: ['.tmp']});
return gulp.src('app/*.html')
.pipe(assets)
.pipe($.if('*.css', $.csso()))
.pipe(assets.restore())
.pipe($.useref())
.pipe($.if('*.html', $.minifyHtml({conditionals: true, loose: true})))
.pipe(gulp.dest('dist'));
});
gulp.task('images', function () {
return gulp.src('app/images/**/*')
.pipe($.cache($.imagemin({
progressive: true,
interlaced: true,
// don't remove IDs from SVGs, they are often used
// as hooks for embedding and styling
svgoPlugins: [{cleanupIDs: false}]
})))
.pipe(gulp.dest('dist/images'));
});
gulp.task('extras', function () {
return gulp.src([
'app/*.*',
'!app/*.html'
], {
dot: true
}).pipe(gulp.dest('dist'));
});
gulp.task('static', function() {
return gulp.src('app/static/*')
.pipe(gulp.dest('dist/static'));
});
gulp.task('clean', require('del').bind(null, ['.tmp', 'dist']));
// inject bower components
gulp.task('wiredep', function () {
var wiredep = require('wiredep').stream;
gulp.src('app/*.html')
.pipe(wiredep({}))
.pipe(gulp.dest('app'));
});
gulp.task('produce',['wiredep','css','images', 'html','extras','static']);
gulp.task('serve', ['produce'], function () {
browserSync({
notify: false,
port: 9000,
server: {
baseDir: ['.tmp', 'app'],
routes: {
'/bower_components': 'bower_components'
}
}
});
// watch for changes
gulp.watch([
'app/*.html',
'app/styles/*.css',
'app/images/**/*',
'.tmp/fonts/**/*'
]).on('change', reload);
gulp.watch('app/fonts/**/*', ['fonts']);
gulp.watch('bower.json', ['wiredep', 'fonts']);
});
gulp.task('serve:dist',['produce'], function () {
browserSync({
notify: false,
port: 9000,
server: {
baseDir: ['dist']
}
});
});
gulp.task('serve:test',['produce'], function () {
browserSync({
notify: false,
open: false,
port: 9000,
ui: false,
server: {
baseDir: 'test'
}
});
gulp.watch([
'test/spec/**/*.js',
]).on('change', reload);
});
gulp.task('build', ['produce'], function () {
});
gulp.task('default', ['clean'], function () {
gulp.start('build');
});
gulp.task('deploy', ['build'], function() {
run("scp -r dist/ lamp.studentmediene.local:/home/sm/www.studentmediene.no").exec();
});