-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
106 lines (97 loc) · 4.03 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
const path = require('path');
const Builder = require('gulp-bem-bundle-builder');
const bundler = require('gulp-bem-bundler-fs');
const gulp = require('gulp');
const debug = require('gulp-debug');
const filter = require('through2-filter').obj;
const merge = require('merge2');
const concat = require('gulp-concat');
const gulpif = require('gulp-if');
const gulpOneOf = require('gulp-one-of');
const uglify = require('gulp-uglify');
const bemxjst = require('gulp-bem-xjst');
const bemhtml = bemxjst.bemhtml;
const toHtml = bemxjst.toHtml;
const postcss = require('gulp-postcss');
const postcssImport = require('postcss-import');
const postcssEach = require('postcss-each');
const postcssFor = require('postcss-for');
const postcssSimpleVars = require('postcss-simple-vars');
const postcssCalc = require('postcss-calc');
const postcssNested = require('postcss-nested');
const rebemCss = require('rebem-css');
const postcssUrl = require('postcss-url');
const autoprefixer = require('autoprefixer');
const postcssReporter = require('postcss-reporter');
const csso = require('gulp-csso');
const YENV = process.env.YENV || 'development';
const isProd = YENV === 'production';
const pathToYm = require.resolve('ym');
const builder = Builder({
levels: [
'node_modules/bem-core/common.blocks',
'node_modules/bem-core/desktop.blocks',
'node_modules/bem-components/common.blocks',
'node_modules/bem-components/desktop.blocks',
'node_modules/bem-components/design/common.blocks',
'node_modules/bem-components/design/desktop.blocks',
'common.blocks',
'desktop.blocks'
],
techMap: {
bemhtml: ['bemhtml.js'],
js: ['vanilla.js', 'browser.js', 'js'],
css: ['post.css', 'css']
}
});
gulp.task('build', () => {
return bundler('*.bundles/*')
.pipe(builder({
// cssdeps: bundle => bundle.src('css', {deps: true})
// .pipe(concat(bundle.name + '.css.deps.js')),
// jsdeps: bundle => bundle.src('js', {deps: true})
// .pipe(concat(bundle.name + '.js.deps.js')),
// bemhtmldeps: bundle => bundle.src('bemhtml', {deps: true})
// .pipe(concat(bundle.name + '.bemhtml.deps.js')),
css: bundle =>
bundle.src('css')
.pipe(gulpOneOf())
.pipe(postcss([
postcssImport(),
postcssEach,
postcssFor,
postcssSimpleVars(),
postcssCalc(),
postcssNested,
rebemCss,
postcssUrl({ url: 'rebase' }),
autoprefixer(),
postcssReporter()
]))
.pipe(concat(bundle.name + '.min.css'))
.pipe(gulpif(isProd, csso())),
js: bundle =>
merge(
gulp.src(pathToYm),
bundle.src('js').pipe(filter(f => ~['vanilla.js', 'browser.js', 'js'].indexOf(f.tech))),
bundle.src('js').pipe(filter(file => file.tech === 'bemhtml.js'))
.pipe(concat('browser.bemhtml.js')).pipe(bemhtml({ elemJsInstances: true, exportName: 'BEMHTML' }))
)
.pipe(concat(bundle.name + '.min.js'))
.pipe(gulpif(isProd, uglify())),
tmpls: bundle =>
bundle.src('bemhtml')
.pipe(concat('any.bemhtml.js'))
.pipe(bemhtml({ elemJsInstances: true }))
.pipe(concat(bundle.name + '.bemhtml.js')),
html: bundle => {
const bemhtmlApply = () => toHtml(bundle.target('tmpls'));
return gulp.src(bundle.dirname + '/*.bemjson.js')
.pipe(bemhtmlApply());
}
}))
.on('error', console.error)
.pipe(debug())
.pipe(gulp.dest(file => path.dirname(file.path)));
});
gulp.task('default', gulp.series('build'));