-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp.coffee
81 lines (65 loc) · 2.17 KB
/
gulp.coffee
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
gulp = require('gulp')
browserSync = require 'browser-sync'
gutil = require('gulp-util')
notify = require('gulp-notify')
prefix = require('gulp-autoprefixer')
inline = require('gulp-inline-css')
sass = require 'gulp-sass'
path = require('path')
rename = require('gulp-rename')
fileinclude = require('gulp-file-include')
modRewrite = require 'connect-modrewrite'
watch = require 'gulp-watch'
cssDir = './src/css/'
targetCssDir = './compiled/css/'
rawHtml = './src/index.html'
newHtml = './compiled/index.html'
targetHtml = './compiled/'
gulp.task 'bs-reload', ->
browserSync.reload()
# Compile less and autoprefix
gulp.task 'sass', ->
gulp.src('./src/css/*.sass')
.pipe sass({indentedSyntax: true, quiet: true})
.pipe prefix('last 20 versions')
.pipe gulp.dest('./compiled/css')
# .pipe notify('SASS compiled and minified')
.pipe(browserSync.reload({stream:true}))
# copy media-queries into index.html
gulp.task 'fileinclude', ['sass'], ->
gulp.src(rawHtml)
.pipe fileinclude prefix: '@@', basepath: './'
.pipe gulp.dest(targetHtml)
.pipe(browserSync.reload({stream:true}))
# gulp.task 'copy', ['sass'], ->
# gulp.src(rawHtml)
# .pipe rename('index-external.html')
# .pipe gulp.dest(targetHtml)
# Make inline html-file
gulp.task 'inlineCss', ['fileinclude'], ->
gulp.src(newHtml)
.pipe(inline(
# applyStyleTags: false,
# removeStyleTags: false
applyStyleTags: true,
applyLinkTags: true,
removeStyleTags: true,
removeLinkTags: true
))
.pipe rename('index-inline.html')
.pipe gulp.dest(targetHtml)
.pipe notify('CSS inlined')
# .pipe(browserSync.reload({stream:true}))
gulp.task 'browser-sync', ->
browserSync.init ['./compiled/index.html'],
server:
baseDir: './'
startPath: '/compiled/index.html'
debugInfo: false
notify: false
gulp.task 'prepare', ['inlineCss'], (next) ->
next()
gulp.task 'default', ['prepare', 'browser-sync'], ->
gulp.watch('./src/index.html', ['inlineCss'])
gulp.watch('./src/css/index.sass', ['sass','inlineCss'])
gulp.watch('./src/css/fonts.sass', ['fileinclude'])