-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.babel.js
133 lines (119 loc) · 4.15 KB
/
gulpfile.babel.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
130
131
132
133
import { task, dest, parallel, series, watch, src } from 'gulp';
import browserify from 'browserify';
import babelify from 'babelify';
import source from 'vinyl-source-stream';
import buffer from 'vinyl-buffer';
import uglify from 'gulp-uglify-es';
import sourcemaps from 'gulp-sourcemaps';
import postcss from 'gulp-postcss';
import merge from 'merge-stream';
import autoprefixer from 'autoprefixer';
import cssnano from 'cssnano';
import gSass from 'gulp-sass';
import rename from 'gulp-rename';
import sassVariables from 'gulp-sass-variables';
import { argv } from 'yargs';
import header from 'gulp-header';
import glob from 'glob';
import path from 'path';
import destination from './destination';
// BrowserSync
const browserSync = require('browser-sync').create();
// defaults
let defPort = 3000;
export const image = task('image', () => {
return (
src(destination.sourceImg)
.pipe(dest(destination.image))
);
});
export const sass = task('sass', () => {
console.log(argv)
const files = glob.sync(destination.sourceSass);
return merge(files.map( function (file) {
return (
src(file)
.pipe(sassVariables({
$env: 'development'
}))
.pipe(sourcemaps.init())
.pipe(gSass())
.on("error", gSass.logError)
.pipe(rename( `${path.basename(file, 'scss').toLowerCase()}css` ))
.pipe(sourcemaps.write())
.pipe(dest(destination.css))
.pipe(browserSync.stream())
);
}))
});
export const js = task('js', () => {
let port = defPort;
if ( argv.port ) {
port = argv.port;
}
const files = glob.sync(destination.sourceJs);
return merge(files.map( function (file) {
return browserify({entries: file, debug: true})
.transform("babelify", { presets: ["es2015"] })
.bundle()
.pipe(source( path.basename(file).toLowerCase() ))
.pipe(header(`let NODE_ENV = 'development';`))
.pipe(header(`let PORT = ${port};`))
.pipe(buffer())
.pipe(dest(destination.js))
.pipe(browserSync.stream());
}))
});
export const prodSass = task('prodSass', () => {
const files = glob.sync(destination.sourceSass);
return merge(files.map( function (file) {
return (
src(file)
.pipe(sassVariables({
$env: 'production'
}))
.pipe(sourcemaps.init())
.pipe(gSass())
.on("error", gSass.logError)
.pipe(postcss([autoprefixer(), cssnano()]))
.pipe(rename( `${path.basename(file, '.scss').toLowerCase()}.min.css`))
.pipe(sourcemaps.write())
.pipe(dest(destination.prodCss))
);
}))
});
export const prodJs = task('prodJs', () => {
const files = glob.sync(destination.sourceJs);
return merge(files.map( function (file) {
return browserify({entries: file, debug: true})
.transform("babelify", { presets: ["es2015"] })
.bundle()
.pipe(source( `${path.basename(file, '.js').toLowerCase()}.min.js` ))
.pipe(header(`let NODE_ENV = 'production';`))
.pipe(buffer())
.pipe(sourcemaps.init())
.pipe(uglify())
.pipe(sourcemaps.write('./maps'))
.pipe(dest(destination.prodJs));
}))
});
const reload = done => {
browserSync.reload();
done();
}
const server = () => {
browserSync.init({
server: {
baseDir: destination.dist
}
});
}
export const dev = task('dev', () => {
watch(destination.privateJs, series('js'));
watch(destination.sourceJs, series('js'));
watch(destination.sourceSass, series('sass'));
watch(destination.sourceImg, series('image'));
server();
watch(destination.html, reload);
});
export const prod = task('prod', parallel('prodJs', 'prodSass'));